wpf中prism框架

安装prism包:

添加引用

cs 复制代码
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using Prism.DryIoc;
using Prism.Ioc;

namespace PrismDemo
{
    /// <summary>
    /// App.xaml 的交互逻辑
    /// </summary>
    public partial class App : PrismApplication
    {
        protected override Window CreateShell()
        {
           return Container.Resolve<MainWindow>();
        }
        protected override void RegisterTypes(IContainerRegistry containerRegistry)
        {
           
        }
    }
}

修改完上述,重新生成项目

安装Prism项目模板

安装过程中关闭Visual Studio,安装完毕再打开,即可创建prism框架的项目。

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