Esempio n. 1
0
        private void OnIntValueBoxChanged(ValueBox <int> control)
        {
            var box = (InputBox)control.Tag;

            if (box.HasCustomValueAccess)
            {
                box.Value = control.Value;
            }
            else
            {
                IntegerValue.Set(box.ParentNode, box.Archetype, control.Value);
            }
        }
Esempio n. 2
0
        private void OnIntValueBoxChanged(ValueBox <int> control)
        {
            var box = (InputBox)control.Tag;

            IntegerValue.Set(box.ParentNode, box.Archetype, control.Value);
        }
Esempio n. 3
0
 private void OnIntValueBoxChanged()
 {
     IntegerValue.Set(ParentNode, Archetype, ((IntValueBox)_defaultValueEditor).Value);
 }