我对C#WPF有一个简单的要求。我有一个文本框,我将在其中输入一些文字。当我按Enter键时,我希望触发一个事件。我的代码是
private void AddKeyword(object sender, KeyEventArgs e)
{
if(e.Key == Key.Enter)
{
//DO something
}
}
我设置了我的Textbox AcceptReturn = True;方法根本不起作用,当我按Enter键时,我没有看到任何事件被触发。请帮帮我。在此先感谢
答案 0 :(得分: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!");
}
}
}
}
答案 1 :(得分:0)
此链接提供有关按钮的点击事件的详细信息。我不确定这是不是你想要的http://www.homeandlearn.co.uk/csharp/csharp_s9p1.html