Hello
I have added an EpiNumericEditor in POTracker and I’m using it to display some statistical data. The value is set in UI code by couple of methods and there is no binding set in properties so there is no reference in database.
Is there any way to make this field ReadOnly like we can do with TextBoxes?
Set the controls Enabled property to False.
One downside would be that you can’t select the control’s contents with the mouse, for copying to the clipboard.
you can use yourcontrol.IsEpiReadOnly = true; if I recall.
1 Like