Completed
Last Updated: 17 Jul 2017 11:02 by ADMIN
ADMIN
Hristo
Created on: 06 Jul 2017 05:23
Category: Editors
Type: Bug Report
1
FIX. RadDateTimePicker - opening the popup with the holding the Alt and Down arrow keys changes the value in the control
How to reproduce:
Just open the popup with the Alt and Down arrow key combination, you will notice that the value changes

Workaround: 
public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
        this.radDateTimePicker1.DateTimePickerElement.KeyDown += DateTimePickerElement_KeyDown;
    }

    private void DateTimePickerElement_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.F4 || (e.KeyData == (Keys.Alt | Keys.Down)))
        {
            e.Handled = true;
        }
    }
}

0 comments