Kinnara / ModernWpf

Modern styles and controls for your WPF applications
MIT License
4.45k stars 446 forks source link

Enter Key Not Detected in the KeyUp Event in Number Box #548

Open iamac18 opened 1 year ago

iamac18 commented 1 year ago

I defined the Key Up Action Listener in the NumberBox. All the key were detected expect Enter Key.

private void Quantity_Box_KeyUp(object sender, KeyEventArgs e) { // The Enter Key is not detected. Utils.Log("The "+ e.Key +" is pressed"); if (e.Key == Key.Enter) {

        }
    }