IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> C# WPF Caliburn.Micro框架下利用Mef加载其它项目界面 -> 正文阅读

[开发工具]C# WPF Caliburn.Micro框架下利用Mef加载其它项目界面

01

前言

MEF是微软自家的托管可扩展框架,在这里我把它用成了ioc容器。在Caliburn.Micro框架下,view和viewmodel被注入到CompositionContainer容器中,然后通过名称可以实现view和viewmodel的匹配。利用这一特点,在多人合作项目开发中,一个解决方法就可以拆分成很多个项目,只用在主项目中搭建框架,每个分支项目开发好以后加载到容器中,就可以实现界面和逻辑的调用,可能这样解释有点生涩,具体我们看下面实例再去理解。

02

新建项目MefTest

第一步 :在我们的解决方法下添加新的项目MefTest(类库)

图片

第二步:MefTest下添加MefTestView.xaml和MefTestViewModel.cs

MefTestViewModel:

[Export(typeof(MefTestViewModel))] 一般是继承公共的接口并导出,当然像我这样直接导出也是可以的.

在这里插入代码片//[Export("PluginTestViewModel", typeof(IPluggablePart))]
    //[PartCreationPolicy(CreationPolicy.Shared)]
    ///也可以这样
    [Export(typeof(MefTestViewModel))]//表示此类需要导出,导出的类型为object
    public class MefTestViewModel
    {
        public void MefTestBtn()
        {
           MessageBox.Show("这是一个mef的测试类");
        }
        public int Sum(int a ,int b)
        {
            return a + b;
        }
    }

MefTestView.xaml:

<UserControl x:Class="MefTest.MefTestView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:MefTest"
             mc:Ignorable="d" 
             d:DesignHeight="450" d:DesignWidth="800">
    <Grid ShowGridLines="True">
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <Button Name="MefTestBtn" Content="MefTestBtn" Background="LightCoral" FontSize="45"/>
    </Grid>
</UserControl>

03

通过Mef注入dll

详细代码如下:


DisplayRootViewFor<StartViewModel>();//显示界面

这里也可以让主界面的viewmodel继承一个公共的接口,比如IShell,这样这里接可以改写为:DisplayRootViewFor<IShell>();//显示界面

using Caliburn.Micro;
using MefTest;
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.ComponentModel.Composition.Primitives;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Windows;

namespace CaliburnTest
{
    class MyBootstrapper : BootstrapperBase
    {

        public MyBootstrapper()
        {
            Initialize();//初始化框架
        }

        //容器,装东西用的。具体装什么先不管。
        CompositionContainer container;

        //[Import]
        //public MefTestParts mefTestParts { get; set; }
        protected override void OnStartup(object sender, StartupEventArgs e)
        {
            DisplayRootViewFor<StartViewModel>();//显示界面
        }
        //private IDialogManager dialogManager = PlatformIoC.Get<IDialogManager>();
        //[Import(typeof(ContainerTest))]
        //public ContainerTest ts { get; set; }
        /// <summary>
        /// 方法1
        /// </summary>
        protected void Configure0()
        {
            var envirmentPath = System.IO.Directory.GetCurrentDirectory();
            //AssemblyCatalog 目录的一种,表示在程序集中搜索
            var assemblyCatalog = new AssemblyCatalog(typeof(StartViewModel).Assembly);//此处这一句实际上没啥用,因为此程序集下没有任何我们需要的实例(各种handler)
                                                                                       //在某个目录下的dll中搜索。
                                                                                       //var directoryCatalog = new DirectoryCatalog(@"C:\Program Files (x86)\YWTK\TOOLS\PLUGIN-LIBS\MISC\I12\", "*.dll");
            var directoryCatalog = new DirectoryCatalog(envirmentPath, @"ContainerDLL.dll");

            var aggregateCatalog = new AggregateCatalog(assemblyCatalog, directoryCatalog);

            //创建搜索到的部件,放到容器中。
            container = new CompositionContainer(aggregateCatalog);

            var batch = new CompositionBatch();      //如果还有自己的部件都加在这个地方
            batch.AddExportedValue<IWindowManager>(new WindowManager());
            batch.AddExportedValue<IEventAggregator>(new EventAggregator());
            batch.AddExportedValue(container);

            this.container.Compose(batch);

        }
        /// <summary>
        /// 方法2
        /// </summary>
        protected override void Configure()
        {
            var envirmentPath = System.IO.Directory.GetCurrentDirectory();

            AssemblySource.Instance.Add(Assembly.LoadFile(Path.Combine(envirmentPath, @"MefTest.dll")));
            //AssemblySource.Instance.Add(Assembly.LoadFile(Path.Combine(envirmentPath, @"PluginTest.dll")));
            var catalog = new AggregateCatalog(
                AssemblySource.Instance.Select(x => new AssemblyCatalog(x)).OfType<ComposablePartCatalog>());
            this.container = new CompositionContainer(catalog);

            var batch = new CompositionBatch();      //如果还有自己的部件都加在这个地方
            batch.AddExportedValue<IWindowManager>(new WindowManager());
            batch.AddExportedValue<IEventAggregator>(new EventAggregator());
            batch.AddExportedValue(this.container);

            this.container.Compose(batch);

        }

        protected override object GetInstance(Type service, string key)
        {
            if (service == null)
            {
                return null;
            }
            string contract = string.IsNullOrEmpty(key) ? AttributedModelServices.GetContractName(service) : key;
            var exports = container.GetExportedValues<object>(contract);
            if (exports.Any())
            {
                return exports.First();
            }
            throw new Exception(string.Format("Could not locate any instances of contract {0}.", contract));
        }

        protected override IEnumerable<object> GetAllInstances(Type service)
        {
            return container.GetExportedValues<object>(AttributedModelServices.GetContractName(service));
        }
        protected override void BuildUp(object instance)
        {
            container.SatisfyImportsOnce(instance);
        }

        protected override void OnExit(object sender, EventArgs e)
        {
            base.OnExit(sender, e);
            this.Application.Shutdown();
        }

    }


}

04

主程序加载和调用

StartView.xaml中添加一个tab页:

<TabItem x:Name="Up5" Header="MefTest" >
                <ContentControl cal:View.Model="{Binding MefTestView}"/>
            </TabItem>

viewmodel中:
定义 MefTestViewModel


public MefTestViewModel MefTestView  { get;set;}

然后在主程序的构造函数中通过ioc获取viewmodel实例:

 MefTestView = IoC.Get<MefTestViewModel>();

这样其它项目的界面就成功的被加载到了我们的主项目中,然而我们并没有实例化,这样如果我们定义了公共的接口,直接导出接口类型,就很好地实现了主项目和子项目的解耦。

05

运行结果

在这里插入图片描述
项目源码

百度网盘:

链接:https://pan.baidu.com/s/11HNocAFoS8Bhpwv0wHeyag

提取码:点击在看后添加小编微信zls20210502获取。

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-10-27 13:01:55  更:2021-10-27 13:04:14 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:56:45-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码