CharacterCasing Enumeração
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Especifica maiúsculas e minúsculas de caracteres digitados manualmente em um controle TextBox.
public enum class CharacterCasing
public enum CharacterCasing
type CharacterCasing =
Public Enum CharacterCasing
- Herança
Campos
Lower | 1 | Os caracteres digitados em um TextBox são convertidos em minúsculas. |
Normal | 0 | Os caracteres digitados em um TextBox não são convertidos. |
Upper | 2 | Os caracteres digitados em um TextBox são convertidos em maiúsculas. |
Exemplos
O exemplo a seguir mostra como usar a CharacterCasing propriedade para converter todos os caracteres em maiúsculas que são inseridos manualmente em um TextBox.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<StackPanel>
<!-- The CharacterCasing property of this TextBox is set to "Upper" which
causes all manually typed characters to be converted to uppercase. -->
<TextBox CharacterCasing="Upper" Width="100" />
</StackPanel>
</Page>
using System.Windows.Controls;
namespace SDKSample
{
public partial class CharacterCasingExample : Page
{
public CharacterCasingExample()
{
StackPanel myStackPanel = new StackPanel();
// Create TextBox.
TextBox myTextBox = new TextBox();
myTextBox.Width = 100;
// The CharacterCasing property of this TextBox is set to
// "Upper" which causes all manually typed characters to
// be converted to upper case.
myTextBox.CharacterCasing = CharacterCasing.Upper;
myStackPanel.Children.Add(myTextBox);
this.Content = myStackPanel;
}
}
}
Imports System.Windows
Imports System.Windows.Controls
Namespace SDKSample
Partial Public Class CharacterCasingExample
Inherits Page
Public Sub New()
Dim myStackPanel As New StackPanel()
'Create TextBox
Dim myTextBox As New TextBox()
myTextBox.Width = 100
' The CharacterCasing property of this TextBox is set to
' "Upper" which causes all manually typed characters to
' be converted to upper case.
myTextBox.CharacterCasing = CharacterCasing.Upper
myStackPanel.Children.Add(myTextBox)
Me.Content = myStackPanel
End Sub
End Class
End Namespace
Comentários
O valor dessa enumeração não afeta os caracteres adicionados a uma TextBox programação.