我在公开的 App.xaml.cs 文件中有 Window 对象。现在,我想在类文件中访问这个窗口对象。可能吗?
在 App.xaml.cs 文件中:
public partial class App : Application
{
public MyWindow mainWindowObj;
void App_Startup(object sender, StartupEventArgs e)
{
mainWindowObj = new MyWindow();
mainWindowObj.Show();
}
}
在某些 Classfile.cs 中,我想访问“mainWindowobj”。我在 Classfile.cs 中尝试过以下操作,但出现错误:
((App)Application.Current).mainWindowObj.Title="Hello";
上面的这一行是我想访问此表单中的变量、对象的示例。
帮助赞赏!