We override the GetDisplayText function for our customized control (which is a sub class of spinEdit) to display a value in the desired format. I want to know which function use this GetDisplayText() to Display the Text on our customized control. I have such question because in my customized control, I have following code:
protected override void OnEnter(EventArgs e)
{
base.OnEnter(e); // base is DevExpress.XtraEditors.SpinEdit
}
Before base.OnEnter(e), my text display well - in correct format, after base.OnEnter(e), it got reset and the format is gone. Or any method to help debug on this is quite helpful! Thanks!