CharacterCasing Enumeration
.NET Framework 4.5
Specifies the case of characters typed manually into a TextBox control.
Assembly: PresentationFramework (in PresentationFramework.dll)
The value of this enumeration does not affect characters that are added to a TextBox programmatically.
The following example shows how to use the CharacterCasing property to convert all characters to uppercase that are manually entered into a TextBox.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <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; using System.Windows; 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; } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.