WPF怎么调用按钮触发事件的方法
请教一下,其他的方法、函数中能调用这个方法吗?需要传什么参数?privatevoidtxtDelay_KeyDown(objectsender,KeyEventArgse...
请教一下,其他的方法、函数中能调用这个方法吗?需要传什么参数?
private void txtDelay_KeyDown(object sender, KeyEventArgs e)
{
TextBox txt = sender as TextBox;
//屏蔽非法按键
if ((e.Key >= Key.NumPad0 && e.Key <= Key.NumPad9) || e.Key == Key.Decimal)
{
if (txt.Text.Contains(".") && e.Key == Key.Decimal)
{
e.Handled = true;
return;
}
e.Handled = false;
}
else if (((e.Key >= Key.D0 && e.Key <= Key.D9) || e.Key == Key.OemPeriod) && e.KeyboardDevice.Modifiers != ModifierKeys.Shift)
{
if (txt.Text.Contains(".") && e.Key == Key.OemPeriod)
{
e.Handled = true;
return;
}
e.Handled = false;
}
else
{
e.Handled = true;
}
} 展开
private void txtDelay_KeyDown(object sender, KeyEventArgs e)
{
TextBox txt = sender as TextBox;
//屏蔽非法按键
if ((e.Key >= Key.NumPad0 && e.Key <= Key.NumPad9) || e.Key == Key.Decimal)
{
if (txt.Text.Contains(".") && e.Key == Key.Decimal)
{
e.Handled = true;
return;
}
e.Handled = false;
}
else if (((e.Key >= Key.D0 && e.Key <= Key.D9) || e.Key == Key.OemPeriod) && e.KeyboardDevice.Modifiers != ModifierKeys.Shift)
{
if (txt.Text.Contains(".") && e.Key == Key.OemPeriod)
{
e.Handled = true;
return;
}
e.Handled = false;
}
else
{
e.Handled = true;
}
} 展开
1个回答
展开全部
可以的,只是没什么意义
this.txtDelay_KeyDown(txtDelay, new KeyEventArgs(
System.Windows.Input.Keyboard.PrimaryDevice,
PresentationSource.CurrentSources.OfType<PresentationSource>().First(),
Environment.TickCount,
Key.A));
追问
这个是不是就是模拟按钮又按了一下啊、?
追答
没有,这只是调用了某个方法,并传递了几个参数而已,并没有改变什么
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询