Exemplo n.º 1
0
        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
     });
 }
Exemplo n.º 3
0
        public override void SetValueFromControl()
        {
            DictionaryIntValueControl tb = (DictionaryIntValueControl)control;

            Value = tb.Value;
        }