Prism&MEF构建开发框架 (三)
菜单管控模块EntityFW
菜单的加载采用MEF技术,程序实现思路:
1 .主菜单加载页面MainMenuView.xaml指向MenuRegion
2. 菜单Item点击及内容加载,采用订阅模式,即菜单item点击时发布消息,shell负责订阅并过滤加载子模块
MainMenuView.xaml
<UserControl x:Class="EntityFW.Views.MainMenuView"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid x:Name="LayoutRoot" Background="White">
<ItemsControl x:Name="MenuItems" BorderBrush="Black">
<ItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel>
<RadioButton Command="{Binding ViewMenuCommand}" CommandParameter="{Binding}" GroupName="MenuItem"
Style="{StaticResource RadioButtonStyle}" VerticalContentAlignment="Center" Height="35" Padding="15,0,0,0" Margin="2,1,2,1">
<StackPanel>
<TextBlock Text="{Binding NameFL}" FontSize="10" Foreground="Gray" />
<TextBlock Text="{Binding NameCH}" FontSize="14" />
</StackPanel>
</RadioButton>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</Grid>
</UserControl>
后台代码实现
using EntityFW.ViewModels;
using MyGlobal.Infrustructure;
using MyGlobal.Infrustructure.Behaviors;
using MyGlobal.Infrustructure.Interfaces;
using Prism.Regions;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.Windows.Controls;
namespace EntityFW.Views
{
/// <summary>
/// MainMenu.xaml 的交互逻辑
/// </summary>
[ViewExport(RegionName = RegionNames.MenuRegion)]
[PartCreationPolicy(CreationPolicy.NonShared)]
public partial class MainMenuView : UserControl,IPartImportsSatisfiedNotification
{
private readonly ObservableCollection<MainMenuViewModel> _MenuList =
new ObservableCollection<MainMenuViewModel>();
[Import]
IRegionManager _regionManager;
public MainMenuView()
{
InitializeComponent();
}
public void OnReceiveNewMenu(MainMenuViewModel menu)
{
_MenuList.Insert(0, menu);
}
public void OnImportsSatisfied()
{
//模块加载成功
MainMenuViewModel mmvm = new MainMenuViewModel();
//初始化主菜单
MenuItems.ItemsSource = mmvm.InitPopMenuListData();
}
}
}
MainMenuViewModel.cs
using EntityFW.Events;
using EntityFW.Models;
using Microsoft.Practices.ServiceLocation;
using MyGlobal.Infrustructure;
using MyGlobal.Infrustructure.Events;
using MyGlobal.Infrustructure.Interfaces;
using Prism.Commands;
using Prism.Modularity;
using Prism.Mvvm;
using Prism.Regions;
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.ComponentModel.Composition.Hosting;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace EntityFW.ViewModels
{
[Export(typeof(MainMenuViewModel))]
[PartCreationPolicy(CreationPolicy.NonShared)]
public class MainMenuViewModel : MyBindableBase
{
[ImportMany]
IEnumerable<Lazy<IMainMenu, IMainMenuDepict>> _MenuList = null;
LoginUser _User;
public ICollection<MainMenuViewModel> InitPopMenuListData()
{
CompositeComponents();
ICollection<MainMenuViewModel> list = new List<MainMenuViewModel>();
//判断登录用户是否有权限
foreach (var o in _MenuList.Where(item => (item.Metadata.Name != null || true)))
{
MainMenuViewModel mm = new MainMenuViewModel(o.Value.NameCH,o.Value.NameFL,o.Value.Url,o.Value.ParentUrl,o.Value.PowerKey);
mm.ViewMenuCommand = new RelayCommand<MainMenuViewModel>(OnViewMainMenu);
list.Add(mm);
}
return list;
}
public void Initialize()
{
}
void CompositeComponents()
{
var assemblylog = new AssemblyCatalog(this.GetType().Assembly);
var aggregatelog = new AggregateCatalog();
aggregatelog.Catalogs.Add(assemblylog);
aggregatelog.Catalogs.Add(new DirectoryCatalog("../../Modules"));
var container = new CompositionContainer(aggregatelog);
container.ComposeParts(this);
//var assemblylog = new AssemblyCatalog(this.GetType().Assembly);
////AppDomain.CurrentDomain.BaseDirectory + "\\Parts", "*.dll"
//var directoryCatalog = new DirectoryCatalog("../../Modules");
////var typeCatalog = new TypeCatalog(typeof(Class6), typeof(Class7));
//var aggregateCatalog = new AggregateCatalog(assemblylog, directoryCatalog);
//var _container = new CompositionContainer(aggregateCatalog);
//var exports = _container.GetExports<object>();
//string x = "";
//foreach (var exportValue in exports)
//{
// // x += exportValue.Value.GetType().ToString();
// Console.WriteLine(exportValue.Value.GetType());
//}
}
public string ModuleName
{
get { return "MainMenu"; }
}
public ICommand ViewMenuCommand { get; private set; }
public MainMenuViewModel() : base("", "", "", "", 1) { }
[ImportingConstructor]
public MainMenuViewModel(string chName, string flName, string url, string parentUrl, int powerKey)
: base(chName, flName, url, parentUrl, powerKey)
{
_User = new LoginUser();
}
public void OnViewMainMenu(MainMenuViewModel obj)
{
//发布消息
EventAggregatorRepository.EventAggregator
.GetEvent<ViewMainMenuEvent>()
.Publish(obj);
//string x = new Uri(obj.ViewUri, UriKind.Relative).AbsolutePath;
// _regionManager.RequestNavigate(RegionNames.MCWrapRegion, new Uri(obj.ViewUri, UriKind.Relative));
}
/****************************************/
string _MenuName;
public string MenuName
{
get
{
return _MenuName;
}
set
{
base.SetProperty(ref _MenuName, value);
}
}
string _ViewUri;
public string ViewUri
{
get
{
return _ViewUri;
}
set
{
base.SetProperty(ref _ViewUri, value);
}
}
}
}
Prism&MEF构建开发框架 (三)的更多相关文章
- Prism&MEF构建开发框架 (一)
Shell框架XECA shell.xaml主要起到是一个容器或壳的作用 <Window x:Class="XECA.Shell" xmlns="http ...
- Prism&MEF构建开发框架
系统框架构想效果图 平台简单由左侧菜单和右侧内容区以及顶部系统和用户信息区构成 菜单根据系统模块动态加载 右侧,根据左侧选中菜单动态加载子模块,子模块集合以tab选项卡方式布局 系统模块划分为Shel ...
- 一步步实现 Prism + MEF(一)--- 搭建框架
第一步:构建一个名为Bootstrapper的类作为引导程序. class Bootstrapper : MefBootstrapper { } 第二步:在MainWindow窗体中添加一个Coont ...
- Prism 文档 第三章 管理组件之间的依赖关系
第3章:管理组件之间的依赖关系 基于Prism库的复合应用程 ...
- Xamarin+Prism开发详解三:Visual studio 2017 RC初体验
Visual studio 2017 RC出来一段时间了,最近有时间就想安装试试,随带分享一下安装使用体验. 1,卸载visual studio 2015 虽然可以同时安装visual studio ...
- UWP应用程序使用Prism框架构建MVVM
在我们创建的UWP解决方案中选择引用->管理NuGet包程序包 NuGet管理包 2. 搜索Prism.Core,并安装 搜索Prism.Core 3. 搜索Prism.Unity,并安装 搜索 ...
- Docker基本命令与使用 —— Dockerfile指令与构建(三)
一.Dockerfile指令上 1.指令格式 # Comment 注释, 以#开头 INSTRUCTION argument 以大写的指令+参数 #First Dockerfile 注释 FROM u ...
- 一步步实现 Prism + MEF(二)--- 绑定命令
Prism程序集为我们提供了DelegateCommand命令,使用该命令可实现窗口直接绑定.第一步:在ViewModel中定义一个DelegateCommand属性. public Delegate ...
- S3C6410嵌入式应用平台构建(三)
构建了好久的系统,由于工作原因,没有及时写记录,目前我已经进展到构建yaffs2文件系统,启动Linux内核了.Uboot移植基本功能已经完成. 由于Uboot移植方法大致是一样的,我主要参考这位博友 ...
随机推荐
- ARP缓存表的构成ARP协议全面实战协议详解、攻击与防御
ARP缓存表的构成ARP协议全面实战协议详解.攻击与防御 1.4.3 ARP缓存表的构成 在局域网的任何一台主机中,都有一个ARP缓存表.该缓存表中保存中多个ARP条目.每个ARP条目都是由一个IP ...
- 神、上帝以及老天爷[HDU2048]
神.上帝以及老天爷 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total S ...
- MySQL安装问题:Unable to update security settings解决方案
主要问题还是之前装过,卸载的时候卸载不干净导致的. 如下: 安装到最后出现: Unable to update security settings. Access denied for user 'r ...
- 编写爬虫程序的神器 - Groovy + Jsoup + Sublime
写过很多个爬虫小程序了,之前几次主要用C# + Html Agility Pack来完成工作.由于.NET BCL只提供了"底层"的HttpWebRequest和"中层& ...
- (转)Linq学习笔记
写在前面 最近在看Linq,在博客园看到这篇文章,写的通俗易懂,转来和大家一起做个分享.原文地址http://www.cnblogs.com/goscan/archive/2011/05/05/Lin ...
- BJOI2015 Day1
本以为会是三道小强与阿米巴,结果打开题目一看发现了这个: T1: 恩先写着一道 #include<cstdio> #include<cstring> #include<c ...
- 循环repeater中的每一列,并计算数据和
<asp:Repeater ID="rpt" runat="server"> <ItemTemplate> <td>< ...
- IE6不支持li:hover的解决办法,一句代码让IE6支持li:hover
如果不是因为工作需要,我根本不会理会IE6的兼容问题,甚至我都不想理会IE的所有内核,不过IE9用了下,我还是重新对IE报以期待的.话题扯远了,下面回到话题上来吧.这次要说的内容就是,如果让IE支持l ...
- sizeToFit()使用心得
sizeToFit()使用心得: 很多的初学者,包括我在内,当初在学习的时候,特别纠结什么时候用这个sizeToFit(). 下面我就来分享一下我的一些使用心得. 一.我们先来看看官方文档对sizeT ...
- Odoo Entypo Regular Icon List
参考地址: http://www.fontslog.com/entypo-regular-otf-33800.htm#custompreview 或 http://www.w3cplus.com/w3 ...