gpt4 book ai didi

c# - 使用静态类使 UI 元素可从 .NET 中的所有类访问是一种好习惯吗?

转载 作者:行者123 更新时间:2023-11-30 19:47:47 24 4
gpt4 key购买 nike

请告诉我以下哪项是好的编程习惯:

<强>1。使用静态类,然后从类 MainWindow 构造函数中使用对它的引用,如下所示:

    public partial class Mainwindow : Window
{
public MainWindow()
{
InitializeComponent();
UI.window = this;
}

private void button1_Click(object sender, RoutedEventArgs e)
{
Shutdownads attempt1 = new Shutdownads();
}
}

static class UI
{
public static MainWindow window;
}

/*and then refering to the wpf elements from other classes as follows
UI.window.textbox.Text="blahblah"
UI.window.button ... and so on
*/

<强>2。将我程序中的所有类都包含在 MainWindow 类中是否更好?

<强>3。是否有更好的选择(它还实现了更好的 OOP,并且我可以通过其他类访问 UI)?

最佳答案

从多个类控制 UI 元素通常是不好的做法。

您应该创建一个接口(interface)来公开从其他类中抽象出 UI 的方法和属性,并在 MainWindow 类中实现该接口(interface)。

其他类可以接受该接口(interface)作为构造函数参数或从静态类中使用它。

关于c# - 使用静态类使 UI 元素可从 .NET 中的所有类访问是一种好习惯吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6142288/

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