Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
134
XamDateTimeEditor editable as a dropdown Only
posted

Is there an way to make the XamDateTimeEditor only editable as a dropdown? I want to force the user to use the Calendar Popup. Is there a easy way to accomplish this?

Parents
  • 69686
    posted

    Hello,

    You could handle the PreviewKeyDown event and set the e.Handled=true:

    private void XamDateTimeEditor_PreviewKeyDown(object sender, KeyEventArgs e)

            {

                e.Handled = true;

            }

Reply Children
No Data