如何在WPF中以编程方式模拟按钮单击?

时间:2015-04-02 15:37:37

标签: c# wpf xaml

在WinForms中,很容易触发代码中的按钮点击,因为System.Windows.Forms.Button类有一个名为PerformClick的公共方法,您可以直接调用。

然而,在WPF中你最终使用的是System.Windows.Controls.Button类,其中我不容易看到任何等效的方法。有一个名为OnClick的方法,但它受到保护,我不确定它是否会实际触发点击;它似乎与点击事件同时被解雇。

var button = new System.Windows.Controls.Button();
// how would I trigger the click event here, programmatically?

0 个答案:

没有答案