public void Bind(string propertyName, SRF.Helpers.PropertyReference prop) { PropertyName = propertyName; _prop = prop; _isReadOnly = !prop.CanWrite; OnBind(propertyName, prop.PropertyType); Refresh(); }
public OptionDefinition(string name, string category, int sortPriority, SRF.Helpers.PropertyReference property) : this(name, category, sortPriority) { Property = property; }