TextBox.CharacterCasing Свойство

Определение

Получает или задает значение, указывающее, изменяет ли элемент управления TextBox регистр знаков при вводе.

public:
 property System::Windows::Forms::CharacterCasing CharacterCasing { System::Windows::Forms::CharacterCasing get(); void set(System::Windows::Forms::CharacterCasing value); };
public System.Windows.Forms.CharacterCasing CharacterCasing { get; set; }
member this.CharacterCasing : System.Windows.Forms.CharacterCasing with get, set
Public Property CharacterCasing As CharacterCasing

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

CharacterCasing

Одно из значений перечисления CharacterCasing, показывающее, изменяет ли элемент управления TextBox регистр знаков. Значение по умолчанию — CharacterCasing.Normal.

Исключения

Свойству присвоено значение, которое не входит в диапазон допустимых значений для данного перечисления.

Примеры

В следующем примере кода создается TextBox элемент управления, используемый для принятия пароля. В этом примере свойство используется CharacterCasing для изменения всех символов, введенных в нижний регистр, а MaxLength свойство ограничивает длину пароля до восьми символов. В этом примере также используется TextAlign свойство для размещения пароля в элементе TextBox управления.

public:
   void CreateMyPasswordTextBox()
   {
      // Create an instance of the TextBox control.
      TextBox^ textBox1 = gcnew TextBox;
      // Set the maximum length of text in the control to eight.
      textBox1->MaxLength = 8;
      // Assign the asterisk to be the password character.
      textBox1->PasswordChar = '*';
      // Change all text entered to be lowercase.
      textBox1->CharacterCasing = CharacterCasing::Lower;
      // Align the text in the center of the TextBox control.
      textBox1->TextAlign = HorizontalAlignment::Center;
   }
public void CreateMyPasswordTextBox()
 {
    // Create an instance of the TextBox control.
    TextBox textBox1 = new TextBox();
    // Set the maximum length of text in the control to eight.
    textBox1.MaxLength = 8;
    // Assign the asterisk to be the password character.
    textBox1.PasswordChar = '*';
    // Change all text entered to be lowercase.
    textBox1.CharacterCasing = CharacterCasing.Lower;
    // Align the text in the center of the TextBox control.
    textBox1.TextAlign = HorizontalAlignment.Center;
 }
Public Sub CreateMyPasswordTextBox()
    ' Create an instance of the TextBox control.
    Dim textBox1 As New TextBox()
    ' Set the maximum length of text in the control to eight.
    textBox1.MaxLength = 8
    ' Assign the asterisk to be the password character.
    textBox1.PasswordChar = "*"c
    ' Change all text entered to be lowercase.
    textBox1.CharacterCasing = CharacterCasing.Lower
    ' Align the text in the center of the TextBox control.
    textBox1.TextAlign = HorizontalAlignment.Center
End Sub

Комментарии

Свойство можно использовать для CharacterCasing изменения регистра символов в соответствии с требованиями приложения. Например, можно изменить регистр всех символов, введенных в элементе управления, используемом TextBox для ввода пароля в верхний или нижний регистр, чтобы применить политику паролей.

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

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