vote up 3 vote down star

Is there a way to automatically capitalize all input thoughtout a WPF app?

flag

75% accept rate

3 Answers

vote up 11 vote down check

You can case all input into TextBox controls with the following property:

CharacterCasing="Upper"

To apply to all TextBox controls in the entire application create a style for all TextBox controls:

<Style DataType="{x:Type TextBox}">
    <Setter Property="CharacterCasing" Value="Upper"/>
</Style>
link|flag
I know this doesn't solve ALL input casing, but most text input would come in through TextBox controls. – Josh G May 7 at 18:15
Wow. I feel like I don't know anything about WPF again... Thanks!!! – a_hardin May 8 at 14:43
vote up 3 vote down

I don't know if there is a quick way to do it for the entire application, however, you can achieve this at the control level.

For a textbox input, you could handle the onTextChanged event, and do something like:

textBox.Text = textBox.Text.ToUpper();
link|flag
+1, I agree, I don't think there is a blanket solution for an entire WPF app. This is probably the best way to go about it. – unforgiven3 May 7 at 18:14
Josh's solution is much more elegant than mine. Go with that :) – Jon May 7 at 18:16
vote up 1 vote down

I recommend creating a custom Textbox class and override an event to automatically capitalize the text. First, this depends on if you want the text to be capitalize as they type or after input is finished.

E.g. for after input is finished

public class AutoCapizalizeTextBox: TextBox
{
  public AutoCapitalizeTextBox()
  {
  }

  public AutoCapitlizeTextBox()
  {
  }

  protected override void OnLostFocus(EventArgs e)
  {
    this.Text = this.Text.ToUpper();

    base.OnLostFocus(e);
  }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.