Пример #1
0
 private void nMapSize_ValueChanged(IntegerUpDown sender)
 {
     if (nMapWidth != null)
     {
         Map.Width = nMapWidth.NumValue;
     }
     if (nMapWidth != null)
     {
         Map.Height = nMapHeight.NumValue;
     }
     mapEditor.CheckSelection();
 }
Пример #2
0
 private void iValue_ValueChanged(IntegerUpDown sender)
 {
     Value.Value = iValue.NumValue;
 }
Пример #3
0
 private void iActionPoints_ValueChanged(IntegerUpDown sender)
 {
     Project.Current.Config.CharacterConfig.ActionPoints = iActionPoints.NumValue;
 }
Пример #4
0
 private void iMovementCost_ValueChanged(IntegerUpDown sender)
 {
     Project.Current.Config.CharacterConfig.MovementActionPoints = iMovementCost.NumValue;
 }
Пример #5
0
 private void iAbilityPoints_ValueChanged(IntegerUpDown sender)
 {
     Project.Current.Config.CharacterConfig.StartingAbilityPoints = iAbilityPoints.NumValue;
 }