Group: StrataFrame Developers
Posts: 6.6K,
Visits: 7K
|
Instead of overriding the KeyUp, inherit the SF textbox and override the ProcessCmdKey method. This will give you 100% control on the input before the value is actually changed. You can also override the Text property (or whichever property to which you are binding) and provide additional logic in the Set/Get which will then give you 100% control on the input as well as the values coming and going from the control. If you replace the logic in these two locations that should be everyplace that you need in order to change the underlying logic to meet your needs.
|