gpt4 book ai didi

c# - Wpf 代码隐藏中无法访问的按钮

转载 作者:太空宇宙 更新时间:2023-11-03 20:09:10 25 4
gpt4 key购买 nike

Codebehind c#中有一个函数代码如下:

private static void ReceiveCallback(IAsyncResult ar)
{
// ...
}

在此函数中,我必须将按钮的可见性设置为 true:

Runrc.IsEnabled = true;

但是我在那个函数中没有得到这个按钮的智能感知,它给了我一个错误。

最佳答案

那是因为方法是static。如果没有对象引用,则无法在静态方法中访问实例成员。

private void ReceiveCallback(IAsyncResult ar)//Remove static
{
// access your button here
}

如果您不熟悉静态成员,您可以阅读它 here

关于c# - Wpf 代码隐藏中无法访问的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21250960/

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