I have setup a sfmaskededit
<syncmaskededit:SfMaskedEdit Grid.Column="1" Value="{Binding LogInterval}" MaskType="RegEx" Mask="\d:[0-5]\d:[0-5]\d" Keyboard="Numeric" FontSize="Medium"
ValueChanged="SfMaskedEdit_ValueChanged" ValidationMode="KeyPress" CursorPositionChanging="SfMaskedEdit_CursorPositionChanging" ></syncmaskededit:SfMaskedEdit>
If I start with tapping on the control so the cursor on left end and start entering numbers from the keypad, the cursor stops moving to the right when it hits the first ":".
So it looks like: 6|:__:__
Is it possible to have the cursor jump over the ":" literal and move into the next editable part of the mask?
I thought to use CursorPositionChanging event - but this event is never triggered! My SfMaskedEdit_CursorPositionChanging is never called.