gpt4 book ai didi

.net - WPF中的MethodInvoker?

转载 作者:行者123 更新时间:2023-12-04 10:04:32 24 4
gpt4 key购买 nike

有没有像 System.Windows.Forms.MethodInvoker 这样的内置委托(delegate)?对于 WPF ?

我正在从 WinForms 移植一些功能至WPF ,为此我不明智地导入 winforms 引用,WPF 中是否有相应的代表? ?

最佳答案

例如,您有按钮控件 btnLogin
你可以像这样使用它:

在 WPF 中:

btnLogin.Dispatcher.Invoke(new Action(delegate
{
// Running on the UI thread
btnLogin.Content = "TEST";
}));

在 Winform 中:
btnLogin.Invoke((MethodInvoker)delegate {
// Running on the UI thread
btnLogin.Text = "TEST";
});

干杯!

关于.net - WPF中的MethodInvoker?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16188287/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com