展开全部
前台:
<TextBox Name="textBox1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="150" KeyUp="textBox1_KeyUp"/>
后台:
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (Keyboard.IsKeyUp(Key.A))
{
MessageBox.Show("You Press the Key A");
}
}
你可以把key_Up事件里的函数提取出来作为一个返回bool型的函数
<TextBox Name="textBox1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="150" KeyUp="textBox1_KeyUp"/>
后台:
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (Keyboard.IsKeyUp(Key.A))
{
MessageBox.Show("You Press the Key A");
}
}
你可以把key_Up事件里的函数提取出来作为一个返回bool型的函数
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询