0

我在 C# WPF 中有一个简单的要求。我有一个文本框,我将在其中输入一些文本。当我按 Enter 时,我希望触发一个事件。我的代码是

 private void AddKeyword(object sender, KeyEventArgs e)
  {
     if(e.Key == Key.Enter)
      {
         //DO something
      }
  } 

我已经设置了我的文本框 AcceptReturn =True; 该方法根本不起作用,当我按 Enter 时,我没有看到任何事件被触发。请帮帮我。提前致谢

4

1 回答 1

2

这对我来说很好

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBox Height="23" HorizontalAlignment="Left" Margin="10,10,0,0" Name="textBox1" VerticalAlignment="Top" Width="190" KeyUp="textBox1_KeyUp" />
    </Grid>
</Window>

using System.Windows;
using System.Windows.Input;

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void textBox1_KeyUp(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Enter)
            {
                e.Handled = true;
                MessageBox.Show("Enter Fired!");
            }
        }
    }
}
于 2013-01-23T04:54:09.597 回答