public override void UpdateControlFromValue() { if (control == null) { return; } DictionaryIntValueControl tb = (DictionaryIntValueControl)control; tb.Value = Value; }
public override object CreateControl() { return(control = new DictionaryIntValueControl { Value = Value, Keys = Keys, Default = DefaultValue }); }
public override void SetValueFromControl() { DictionaryIntValueControl tb = (DictionaryIntValueControl)control; Value = tb.Value; }