Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直主要使用 Windows 窗体,但想改用 WPF。通常我喜欢使用 Manager.cs 文件来管理我的应用程序。我会将管理器设置为入口点,它将加载例如我的主窗口。
根据我的阅读,运行 WPF 时会自动生成 Main() 入口点。我尝试更改 XAML 文件以运行我的 Manager.cs 文件,但这样做时它会抱怨。
我是 WPF 的菜鸟,有人对如何将所有内容封装在 Manager.cs 文件中并在启动时运行有任何建议吗?
虽然我建议不要打扰,但您应该能够将 App.xaml 文件名更改为 Manager.xaml(进而创建 Manager.xaml.cs),然后在新的 Manager.xaml.cs 中更改App为Manager部分类定义。
App
Manager
部分类的另一半是自动生成的东西。
然后您可以Manager.Current像以前一样访问App.Current。
Manager.Current
App.Current