gpt4 book ai didi

c# - 使 WPF 导航动态 - 使用 XML 文件?

转载 作者:太空宇宙 更新时间:2023-11-03 11:23:02 26 4
gpt4 key购买 nike

我正在处理桌面应用程序的导航部分,遇到了一些问题。请求是导航应该是动态的,这样您就可以在不重新编译的情况下切换 View 的顺序(理想情况下也可以在不重新编译的情况下添加 View )。

目前,我正在使用 XML 来定义要显示的窗口、它应该具有的页眉以及页脚的外观。下面是 XML 现在的样子:

<?xml version="1.0" encoding="utf-8" ?>
<ArrayOfViewState xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ViewState ViewName="WelcomeView" Header="Welcome to the Application" FooterButton1="Quit" FooterButton2="Back" FooterButton3="Next" />
<ViewState ViewName="LicenseView" Header="Licence Agreement" FooterButton1="Quit" FooterButton2="Back" FooterButton3="Next" />
<ViewState ViewName="LoginView" Header="Log in" FooterButton1="Quit" FooterButton2="Back" FooterButton3="Next" />
<ViewState ViewName="InstallationView" Header="Installing..." FooterButton1="Cancel" FooterButton2="None" FooterButton3="Next" />
<ViewState ViewName="UpdateView" Header="Updating..." FooterButton1="Cancel" FooterButton2="None" FooterButton3="Next" />
<ViewState ViewName="FinishedView" Header="Finished!" FooterButton1="None" FooterButton2="None" FooterButton3="Finish" />
</ArrayOfViewState>

当我在代码中匹配它时,它看起来像这样(viewState.View 是 UserControl 类型):

...
case "WelcomeView":
viewState.View = new WelcomeView();
...

如您所见,我使用 XML 中的 ViewName 属性来匹配和创建我的 View (它们也有一个 ViewModel,但这是通过 XAML 和 MVVM Light ViewModel Locator 处理的)。

这个解决方案在技术上允许在不重新编译的情况下对导航进行一些更改(例如,您可以随意调整顺序),但是必须有比匹配字符串属性更好的方法来处理这个问题。我已经尝试研究序列化用户控件,以便我可以将它与其他属性一起加载,但到目前为止我没有运气。关于如何着手改进/改变这一点的任何想法?

谢谢!

最佳答案

确实有更好的办法。 :-)

看看 Microsoft Extensibility Framework (MEF) .它与 WPF 和 MVVM 配合得很好。

它允许您在运行期间即时轻松组合应用程序部分。

简而言之,您使用属性 [Export] 标记要在其他地方加载的类:

[Export(typeof(ViewContainer))]
public class ViewContainer
{
public string ViewName = "WelcomeView";
public string Header="Welcome to the Application"

// Do more stuff here
}

在应该使用导出类的类或程序集中,您可以使用 [Import] 属性加载它:

public class ClassInOtherAssembly
{
[ImportMany]
internal ObservableCollection<ViewContainer> m_MyViews { get; set; }

// Do other stuff here
}

根据您实现的架构,使用 1-liner (!) 来组装所有导入的类甚至可能就足够了(这使用与以下引用教程不同的方法):

CompositionInitializer.SatisfyImports(this);

就是这样!

(不要按原样使用这些示例,我只是想切入正题。我建议使用Properties 而不是 stringsinterfaces 而不是类导出。您会在网上找到许多更优雅的片段。 :-) )

在这里您可以找到入门教程: Getting started with Managed Extensibility Framework (MEF)

关于c# - 使 WPF 导航动态 - 使用 XML 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10281196/

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