创建基于Prism框架的WPF应用(NET Framework)项目

创建基于Prism框架的WPF应用(NET Framework)项目

1、创建WPF(NET Framework)项目并整理结构

(1)、创建WPF(NET Framework)项目;

(2)、添加Views和ViewModels文件夹;

(3)、将MainWindow.xaml移到Views文件夹;

(4)、在ViewModels文件中新建 MainWindowViewModel.cs

(5)、修改App.xaml

csharp 复制代码
StartupUri="MainWindow.xaml"

改为

csharp 复制代码
StartupUri="Views/MainWindow.xaml"

(6)、修改MainWindow.xaml

csharp 复制代码
x:Class="DemoTest.MainWindow"

改为

csharp 复制代码
x:Class="DemoTest.Views.MainWindow"

(7)、修改MainWindow.xaml.cs

csharp 复制代码
namespace HscpTest

改为

csharp 复制代码
namespace HscpTest.Views

(8)、项目编译、运行正常。

2、升级为Prism框架

(1)、安装依赖包Prism.Unity 8.1.97
注意依赖包的版本,其它版本未必兼容。

(2)、在MainWindow.xaml中添加Prism引用,并自动开启

csharp 复制代码
xmlns:prism="http://prismlibrary.com/"
        prism:ViewModelLocator.AutoWireViewModel="True"

(3)、修改MainWindow.xaml.cs

csharp 复制代码
public MainWindow()
        {
            InitializeComponent();
            Loaded += MainWindow_Loaded;
        }

        private void MainWindow_Loaded(object sender, RoutedEventArgs e)
        {
            var vm = DataContext as MainWindowViewModel;
            //throw new NotImplementedException();
        }

(4)、修改App.xaml

csharp 复制代码
<prism:PrismApplication x:Class="HscpTest.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:HscpTest"
             xmlns:prism="http://prismlibrary.com/"
             StartupUri="Views/MainWindow.xaml">
    <!--xmlns:prism="http://prismlibrary.com/"-->
    <Application.Resources>
         
    </Application.Resources>
</prism:PrismApplication>

(5)、修改App.xaml.cs

csharp 复制代码
protected override Window CreateShell()
        {
            return Container.Resolve<Views.MainWindow>();
            //throw new NotImplementedException();
        }

        protected override void RegisterTypes(IContainerRegistry containerRegistry)
        {
            //containerRegistry.Register<Views.MainWindow>();
            //throw new NotImplementedException();
        }

(6)、删除App.xaml的启动设置

csharp 复制代码
StartupUri="Views/MainWindow.xaml"
相关推荐
dotent·2 天前
C#基于WPF UI框架的通用基础上位机测试WPF框架
ui·c#·wpf
咩图3 天前
WPF+Prism8.0.0.1909+C#创建一个桌面程序
c#·wpf·prism
雁于飞3 天前
分布式基础
java·spring boot·分布式·spring·wpf·cloud native
oioihoii3 天前
WPF入门指南:解析默认项目结构
wpf
极客智造3 天前
深入解析 ReactiveUI:WPF 响应式 MVVM 开发的 “终极方案”
wpf
Macbethad5 天前
使用WPF编写一个多维度伺服系统的程序
大数据·hadoop·wpf
lingxiao168885 天前
WPF Prism框架应用
c#·wpf·prism
Macbethad5 天前
使用WPF编写一个Ethercat主站的程序
wpf
难搞靓仔6 天前
WPF 弹出窗体Popup
wpf·popup
Macbethad6 天前
使用WPF编写一个MODBUSTCP通信的程序
wpf