.NET Core 3 WPF MVVM框架 Prism系列之模块化
本文将介绍如何在.net core3环境下使用mvvm框架prism的应用程序的模块化
前言
我们都知道,为了构成一个低耦合,高内聚的应用程序,我们会分层,拿一个wpf程序来说,我们通过mvvm模式去将一个应用程序的分成view-viewmodel-model,大大消除之前业务逻辑和界面元素之间存在的高耦合,使我们后台开发人员可以将重点更放在业务逻辑层面上,属于ui界面的则可以交给更专业的ui人员
但是一个应用程序是由不同的业务模块来组合而成,我们理想状态下,每个业务模块拥有着能够独立的功能,并且和其他业务模块之间的是低耦合关系的,且每个业务模块可以单独用来开发,测试和部署,这样组成的应用程序是非常容易扩展,测试和维护的,而prism提供将应用程序模块化的功能
我们先来看下一个小demo
再来看看解决方案的项目:
我将该小demo,分为四个项目,其中shell为主窗体项目,然后medicinemodule和patientmodule为我们分割开的业务模块,最后infrastructure则为我们的公共共享项目,我们将一步步讲解该demo如何进行模块化的.
首先,我们引用官方的一个图,大致讲解了创建加载模块的流程:
- 注册/发现模块
- 加载模块
- 初始化模块
我们就根据这个流程来看看demo是如何进行模块化的?
一.注册/发现模块
1.注册模块
prism注册模块有三种方式:
- 代码注册
- 目录文件扫描注册
- 配置文件app.config注册
我们先用代码注册的方式,首先我们要先定义模块,我们分别在prismmetrosample.medicinemodule和prismmetrosample.patientmodule两个项目中创建medicinemodule类和patientmodule类,代码如下:
medicinemodule.cs:
public class medicinemodule : imodule { public void oninitialized(icontainerprovider containerprovider) { var regionmanager = containerprovider.resolve<iregionmanager>(); //medicinemaincontent regionmanager.registerviewwithregion(regionnames.medicinemaincontentregion, typeof(medicinemaincontent)); //searchmedicine-flyout regionmanager.registerviewwithregion(regionnames.flyoutregion, typeof(searchmedicine)); //rightwindowcommandsregion regionmanager.registerviewwithregion(regionnames.showsearchpatientregion, typeof(showsearchpatient)); } public void registertypes(icontainerregistry containerregistry) { } }
patientmodule.cs:
public class patientmodule : imodule { public void oninitialized(icontainerprovider containerprovider) { var regionmanager = containerprovider.resolve<iregionmanager>(); //patientlist regionmanager.registerviewwithregion(regionnames.patientlistregion, typeof(patientlist)); //patientdetail-flyout regionmanager.registerviewwithregion(regionnames.flyoutregion, typeof(patientdetail)); } public void registertypes(icontainerregistry containerregistry) { } }
1.代码注册
然后我们在prismmetrosample.shell主窗体的项目分别引用prismmetrosample.medicinemodule和prismmetrosample.patientmodule程序集,之后在app.xaml.cs中代码注册:
protected override void configuremodulecatalog(imodulecatalog modulecatalog) { modulecatalog.addmodule<prismmetrosample.patientmodule.patientmodule>(); //将medicinemodule模块设置为按需加载 var medicinemoduletype = typeof(prismmetrosample.medicinemodule.medicinemodule); modulecatalog.addmodule(new moduleinfo() { modulename= medicinemoduletype.name, moduletype=medicinemoduletype.assemblyqualifiedname, initializationmode=initializationmode.ondemand }); }
注:代码注册是没有所谓的发现模块部分,是直接注册部分
2.目录文件扫描注册
2.1注册模块
首先我们先在medicinemodule加上特性,ondemand为true为"按需"加载,而patientmodule默认加载则可以不加
[module(modulename = "medicinemodule", ondemand =true)] public class medicinemodule : imodule
然后我们将prismmetrosample.medicinemodule项目和prismmetrosample.patientmodule项目设置生成事件dll拷贝到prismmetrosample.shell项目bin\debug下的modules文件夹下
生成事件命令行如下:
xcopy "$(targetdir)$(targetname)*$(targetext)" "$(solutiondir)\prismmetrosample.shell\bin\debug\netcoreapp3.1\modules\" /y /s
2.2发现模块
然后我们在app.xaml.cs重载实现该函数:
protected override imodulecatalog createmodulecatalog() { //获取该路径下的文件夹的模块目录 return new directorymodulecatalog() { modulepath = @".\modules" }; }
3.使用配置文件app.config注册
3.1注册模块
我们在主窗体项目prismmetrosample.shell添加一个app.config文件:
app.config:
<?xml version="1.0" encoding="utf-8" ?> <configuration> <configsections> <section name="modules" type="prism.modularity.modulesconfigurationsection, prism.wpf"/> </configsections> <modules> <!--注册patientmodule模块--> <module assemblyfile="prismmetrosample.patientmodule.dll" moduletype="prismmetrosample.patientmodule.patientmodule, prismmetrosample.patientmodule, version=1.0.0.0, culture=neutral, publickeytoken=null" modulename="patientmodule" startuploaded="true" /> <!--注册medicinemodule模块--> <module assemblyfile="prismmetrosample.medicinemodule.dll" moduletype="prismmetrosample.medicinemodule.medicinemodule, prismmetrosample.medicinemodule, version=1.0.0.0, culture=neutral, publickeytoken=null" modulename="medicinemodule" startuploaded="false" /> </modules> </configuration>
其中startuploaded为true则设置自动加载,为"可用时"模块,为false则不加载,设置为“按需”模块
3.2发现模块
修改app.xaml.cs的createmodulecatalog函数:
app.xaml.cs:
protected override imodulecatalog createmodulecatalog() { return new configurationmodulecatalog();//加载配置文件模块目录 }
二.加载模块
prism应用程序加载模块有两种方式:
- 加载“可用时”的模块(默认方式)
- 根据情况加载“按需”模块
在代码注册时候,我将通过默认方式注册了patientmodule,然后注册medicinemodule将其设置为"按需"加载,“按需”加载有个好处就是,应用程序运行初始化后,medicinemodule模块是不加载到内存的,这样就提供了很大的灵活空间,默认我们可以加载一些"可用"的模块,然后我们可以根据自身要求去"按需"加载我们所需要的模块
这里可以讲解下按需加载medicinemodule的代码实现,首先我们已经在app.cs中将medicinemodule设置为"按需"加载,然后我们在主窗体通过一个按钮去加载medicinemodule,代码如下:
mainwindowviewmodle.cs:
public class mainwindowviewmodel : bindablebase { imodulemanager _modulemanager; public mainwindowviewmodel(imodulemanager modulemanager) { _modulemanager = modulemanager; } private delegatecommand _loadpatientmodulecommand; public delegatecommand loadpatientmodulecommand => _loadpatientmodulecommand ?? (_loadpatientmodulecommand = new delegatecommand(executeloadpatientmodulecommand)); void executeloadpatientmodulecommand() { _modulemanager.loadmodule("medicinemodule"); } }
我们还可以去检测加载模块完成事件,我们mainwindowviewmodle中加上这几句:
imodulemanager _modulemanager; public mainwindowviewmodel(imodulemanager modulemanager) { _modulemanager = modulemanager; _modulemanager.loadmodulecompleted += _modulemanager_loadmodulecompleted; } private void _modulemanager_loadmodulecompleted(object sender, loadmodulecompletedeventargs e) { messagebox.show($"{e.moduleinfo.modulename}模块被加载了"); }
效果如下:
三.初始化模块
加载模块后,模块就会进行初始化,我们以medicinemodule为例子,先来看看代码:
public class medicinemodule : imodule { public void oninitialized(icontainerprovider containerprovider) { var regionmanager = containerprovider.resolve<iregionmanager>(); //medicinemaincontent regionmanager.registerviewwithregion(regionnames.medicinemaincontentregion, typeof(medicinemaincontent)); //searchmedicine-flyout regionmanager.registerviewwithregion(regionnames.flyoutregion, typeof(searchmedicine)); //rightwindowcommandsregion regionmanager.registerviewwithregion(regionnames.showsearchpatientregion, typeof(showsearchpatient)); } public void registertypes(icontainerregistry containerregistry) { } }
其中,imodule接口定义了两个函数oninitialized和registertypes,其中初始化顺序是registertypes->oninitialized,也就是registertypes函数会先于oninitialized函数,虽然这里我没在registertypes写代码,但是这里通过是可以依赖注入到容器,给medicinemodule模块使用的,而oninitialized我们通常会注册模块试图,或者订阅应用程序级别的事件和服务,这里我是将三个view分别分区域注册模块视图
最后,其实一开始我们看到demo演示,点击病人列表,出来的病人详细页是没有数据的,这涉及到窗体之间的通讯,病人列表和病人详细页属于同一模块,这很好办,如何我要将搜索到的药物加到当前病人详细页的药物列表里面,这就涉及到不同模块窗体之间的通讯,处理不好是会造成模块之间的强耦合,下篇我们会讲到如何使用事件聚合器来实现同一模块不同窗体的通讯和不同模块不同窗体的通讯,而完整的demo也会在下一篇放出。
推荐阅读
-
.NET Core 3 WPF MVVM框架 Prism系列之模块化
-
.NET Core 3 WPF MVVM框架 Prism系列之区域管理器
-
.NET Core 3 WPF MVVM框架 Prism系列之事件聚合器
-
.NET Core 3 WPF MVVM框架 Prism系列之对话框服务
-
.NET Core 3 WPF MVVM框架 Prism系列之导航系统
-
.NET Core 3 WPF MVVM框架 Prism系列之区域管理器
-
.NET Core 3 WPF MVVM框架 Prism系列之模块化
-
.NET Core 3 WPF MVVM框架 Prism系列之事件聚合器
-
.NET Core 3 WPF MVVM框架 Prism系列之导航系统
-
.NET Core 3 WPF MVVM框架 Prism系列之对话框服务