UpDownBase.UpDownAlign Свойство

Определение

Возвращает или задает выравнивание кнопок "СТРЕЛКА ВВЕРХ" и "СТРЕЛКА ВНИЗ" на регуляторе (также известном как элемент управления "вверх-вниз").

public System.Windows.Forms.LeftRightAlignment UpDownAlign { get; set; }

Значение свойства

LeftRightAlignment

Одно из значений перечисления LeftRightAlignment. Значение по умолчанию — Right.

Исключения

Назначенное значение не является одном из значений LeftRightAlignment.

Примеры

В следующем примере кода используется производный класс NumericUpDown и задаются некоторые его свойства, производные от UpDownBase. Этот код требует наличия NumericUpDown элемента управления с именемnumericUpDown1, двумя ComboBox элементами управления с именем comboBox1 и comboBox2тремя элементами управления , а checkBox1``checkBox2также checkBox2 тремя CheckBox элементами управления, созданными в форме. Добавьте следующие элементы comboBox1в : None, Fixed3Dи FixedSingle. Добавьте следующие элементы comboBox2в : Left, Rightи Center.

Код позволяет изменять значения свойств во время выполнения и видеть, как они влияют на внешний вид и поведение спин-поля.

private void comboBox1_SelectedIndexChanged(Object sender, 
                                             EventArgs e)
 {
      // Set the BorderStyle property.
     switch(comboBox1.Text)
     {
         case "Fixed3D":
             numericUpDown1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
             break;
         case "None":
             numericUpDown1.BorderStyle = System.Windows.Forms.BorderStyle.None;
             break;
         case "FixedSingle":
             numericUpDown1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
             break;
     }
 }
 
 private void comboBox2_SelectedIndexChanged(Object sender, 
                                             EventArgs e)
 {
      // Set the TextAlign property.    
     switch (comboBox2.Text)
     {
         case "Right":
             numericUpDown1.TextAlign = HorizontalAlignment.Right;
             break;
         case "Left":
             numericUpDown1.TextAlign = HorizontalAlignment.Left;
             break;
         case "Center":
             numericUpDown1.TextAlign = HorizontalAlignment.Center;
             break;
     }
 }
 
 private void checkBox1_Click(Object sender, 
                              EventArgs e)
 {
      // Evaluate and toggle the ReadOnly property.
     if (numericUpDown1.ReadOnly)
     {
         numericUpDown1.ReadOnly = false;
     }
     else
     {
         numericUpDown1.ReadOnly = true;
     }
 }
 
 private void checkBox2_Click(Object sender, 
                              EventArgs e)
 {
      // Evaluate and toggle the InterceptArrowKeys property.
     if (numericUpDown1.InterceptArrowKeys)
     {  
         numericUpDown1.InterceptArrowKeys = false;
     }
     else
     {
         numericUpDown1.InterceptArrowKeys = true;
     }
 }
 
 private void checkBox3_Click(Object sender, 
                              EventArgs e)
 {
      // Evaluate and toggle the UpDownAlign property.
     if (numericUpDown1.UpDownAlign == LeftRightAlignment.Left)
     {
         numericUpDown1.UpDownAlign = LeftRightAlignment.Right;
     }
     else
     {
         numericUpDown1.UpDownAlign = LeftRightAlignment.Left;
     }
 }

Применяется к

Продукт Версии
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

См. также раздел