WPF TextBox不允许使用符号

时间:2013-09-11 13:59:12

标签: c# wpf

我创建了一个wpf文本框,我为该文本框生成一个KeyDown事件,只允许使用字母数字,空格,退格,' - '来实现我使用下面的代码

private void txtCompanyName_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
   e.Handled = !(char.IsLetterOrDigit((char)KeyInterop.VirtualKeyFromKey(e.Key)) || (char)KeyInterop.VirtualKeyFromKey(e.Key) == (char)Keys.Back || (char)KeyInterop.VirtualKeyFromKey(e.Key) == (char)Keys.Space || (char)KeyInterop.VirtualKeyFromKey(e.Key) == '-');
}

但它也允许文本框中的符号。我怎么能解决这个问题。因为我的英语不好。提前谢谢

4 个答案:

答案 0 :(得分:1)

使用PreviewKeyDown事件代替KeyDown事件。如果处理,它将不允许激活keydown事件。为了实现完整功能,您还应该为textBox.PreviewTextInput

添加相同的逻辑

答案 1 :(得分:1)

我同意@nit,但补充说你也可以使用以下

textBox.PreviewTextInput = new TextCompositionEventHandler((s, e) => e.Handled = 
    !e.Text.All(c => Char.IsNumber(c) && c != ' '));

答案 2 :(得分:1)

或者,创建一个可在整个应用程序中重用的附加行为:)

示例:

用法:

<TextBox x:Name="textBox" VerticalContentAlignment="Center" FontSize="{TemplateBinding FontSize}" attachedBehaviors:TextBoxBehaviors.AlphaNumericOnly="True" Text="{Binding someProp}">

CODE:

public static class TextBoxBehaviors
{

public static readonly DependencyProperty AlphaNumericOnlyProperty = DependencyProperty.RegisterAttached(
  "AlphaNumericOnly", typeof(bool), typeof(TextBoxBehaviors), new UIPropertyMetadata(false, OnAlphaNumericOnlyChanged));

static void OnAlphaNumericOnlyChanged(DependencyObject depObj, DependencyPropertyChangedEventArgs e)
{
  var tBox = (TextBox)depObj;

  if ((bool)e.NewValue)
  {
    tBox.PreviewTextInput += tBox_PreviewTextInput;
  }
  else
  {
    tBox.PreviewTextInput -= tBox_PreviewTextInput;
  }
}

static void tBox_PreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e)
{
  // Filter out non-alphanumeric text input
  foreach (char c in e.Text)
  {
    if (AlphaNumericPattern.IsMatch(c.ToString(CultureInfo.InvariantCulture)))
    {
      e.Handled = true;
      break;
    }
  }
}
}

答案 3 :(得分:0)

您可以检查是否已启用大写锁定或按下其中一个shift键(例如Keyboard.IsKeyDown(Key.LeftShift);),如果是这种情况,您只需留出空格并返回:

if (condition)
    e.Handled = e.Key == Key.Back || e.Key == Key.Space;

我还建议您使用TextChanged事件,因为如果您在TextBox中粘贴某些内容,它也会被触发。