I recently moved from version 2.0 to 2.6 of the extended wpf toolkit.
I have a DoubleUpDown
in my code that I focus programmatically using the Focus()
method. This worked in the old version but no longer works with the new one.
A simple test:
this.myDoubleUpDown.Focus();
System.Diagnostics.Debug.WriteLine(this.myDoubleUpDown.IsFocused);
This would output 'true' with the old version but 'false' with the latest. Any idea how to fix this issue? Thank you