Пример #1
0
 public void UpdateDefaultValue(InputBox box, Control control)
 {
     if (control is UIntValueBox intValue)
     {
         intValue.Value = UnsignedIntegerValue.Get(box.ParentNode, box.Archetype, box.Value);
     }
 }
Пример #2
0
        public Control Create(InputBox box, ref Rectangle bounds)
        {
            var value   = UnsignedIntegerValue.Get(box.ParentNode, box.Archetype, box.Value);
            var control = new UIntValueBox(value, bounds.X, bounds.Y, 40, uint.MinValue, uint.MaxValue, 0.01f)
            {
                Height = bounds.Height,
                Parent = box.Parent,
                Tag    = box,
            };

            control.BoxValueChanged += OnValueBoxChanged;
            return(control);
        }