IReadOnly
Wisej.Web.IReadOnly
public interface IReadOnlyPublic Interface IReadOnly
// Old code
if (control is TextBox)
((TextBox)control).ReadOnly = true;
else if (control is DataGridView)
((DataGridView)control).ReadOnly = true;
// etc...
// New code
if (control is IReadOnly)
((IReadOnly)control).ReadOnly = true;
Properties
ReadOnly
Events
ReadOnlyChanged
Implemented By
Name
Description
Last updated
Was this helpful?

