gpt4 book ai didi

c# - 在静态方法中访问 WPF Name 属性

转载 作者:太空狗 更新时间:2023-10-30 01:05:01 34 4
gpt4 key购买 nike

我有一个 WPF 应用程序。在其中一个 XAML 中,我使用了 Name 属性,如下所示

 x:Name="switchcontrol"

我必须使用 this.switchcontrol 访问 .cs 文件中的控件/属性我的问题是,我需要像这样访问静态方法中的控件

public static getControl()
{
var control = this.switchcontrol;//some thing like that
}

如何实现?

最佳答案

this 在静态方法中不可访问。您可以尝试在静态属性中保存对实例的引用,例如:

public class MyWindow : Window
{

public static MyWindow Instance { get; private set;}

public MyWindow()
{
InitializeComponent();
// save value
Instance = this;
}

public static getControl()
{
// use value
if (Instance != null)
var control = Instance.switchcontrol;
}

protected override void OnClosed(EventArgs e)
{
base.OnClosed(e);
Instance = null; // remove reference, so GC could collect it, but you need to be sure there is only one instance!!
}

}

关于c# - 在静态方法中访问 WPF Name 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20490770/

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