Unplanned
Last Updated: 27 Dec 2016 14:04 by ADMIN
ADMIN
Dinko | Tech Support Engineer
Created on: 17 Oct 2016 10:54
Category: MaskedInput
Type: Bug Report
3
MaskInput: Application freezes when several MaskInput controls are focused at the same time.
When two or more MaskInput controls are focused at the same time, the application freezes.

Workaround:

Instead of 

  txtMask1.Focus();
  txtMask2.Focus();

Use

  txtMask1.Focus();
                Dispatcher.BeginInvoke(new Action(() =>
                    {
                        txtMask2.Focus();
                    }), DispatcherPriority.Loaded);
0 comments