Hi Support,
I have 10 RadMaskedEditBox that use the same event handler on the KeyUp event. In my handler I need to know the name of the component it was called from.
private void radMaskedEditBox_KeyUp(object sender, KeyEventArgs e)
...
I would like to use something like that ((RadMaskedEditBox)sender).Name but it's not working since the sender is from type RadMaskedEditBoxElement and the Name property is empty.
How can I found the sender component name from the KeyUp event?
Regards,
Nadia
I have 10 RadMaskedEditBox that use the same event handler on the KeyUp event. In my handler I need to know the name of the component it was called from.
private void radMaskedEditBox_KeyUp(object sender, KeyEventArgs e)
...
I would like to use something like that ((RadMaskedEditBox)sender).Name but it's not working since the sender is from type RadMaskedEditBoxElement and the Name property is empty.
How can I found the sender component name from the KeyUp event?
Regards,
Nadia