WPF MVVM使用prism4.1搭建
MVVM即Model-View-ViewModel,MVVM模式与MVP(Model-View-Presenter)模式相似,主要目的是分离视图(View)和模型(Model),具有低耦合、可重用性、独立开发、可测试性等优点。
MVVM框架有很多,开源的主要有:
- PRISM:由微软提供,和MEF/Unity一起用于依赖注入,支持组合命令,可以扩展。MSDN上有详细的教程和演练。
- MVVM Light Toolkit:有visual Studio和Expression Blend的项目和项的模板。更多信息请看这里,另外可以参考VS和Expression Blend的使用教程。
- Caliburn Micro:支持视图模型先行(ViewModel-First)和视图先行(View-First)两种开发方式,通过co-routine支持异步编程。
- Simple MVVM Toolkit:提供VS项目和项的模板,依赖注入,支持深拷贝以及模型和视图模型之间的属性关联。
- Catel:包含项目和项的模板,用户控件和企业类库。支持动态视图模型注入,视图模型的延迟加载和验证。还支持WP7专用的视图模型服务。
闭源框架主要有:
- Intersoft ClientUI:付费的,只支持WPF和Silverlight,但是,除了MVVM框架,它还提供其它一些特性。
- Vidyano:免费但不开源。带有实体映射/虚拟持久化对象(数据容器),业务规则以及内置基于ACL的安全特性。
今天我使用的是微软提供的Prism4.1搭建的小测试。
首先建了个WPF项目,项目目录结构如图
Models 存放的是数据模型
Service存放的是业务逻辑
ViewModels存放的便是视图模型
Views存放WPF窗口
在Models文件夹中创建一个用户模型User.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace Test.Wpf.Mvvm.Models
{
class User
{
/// <summary>
/// 用户名
/// </summary>
public string Nameword { get; set; }
/// <summary>
/// 密码
/// </summary>
public string Password { get; set; }
}
}
在Services文件夹中添加用户的业务逻辑UserService.cs,因为自己写这个程序重点是学习MVVM,所以这里就简单写了一下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace Test.Wpf.Mvvm.Services
{
class UserService
{
/// <summary>
/// 获取所有用户方法
/// </summary>
/// <returns></returns>
public List<Models.User> GetAllUser()
{
List<Models.User> users = new List<Models.User>(); for (int i = 0; i < 3; i++)
{
Models.User user = new Models.User();
user.Nameword = "用户" + i;
user.Password = "密码" + i;
users.Add(user);
} return users;
}
}
}
在ViewModels中创建主窗口的视图模型MainWindowViewModel.cs,这个地方要添加引用Microsoft.Practices.Prism.dll,我把它放在libs中了
//***************************************************
//
// 文件名(FileName) : MainWindowViewModel.cs
//
// 作者(Author) : zsm
//
// 创建时间(CreateAt): 2013-09-03 16:17:29
//
// 描述(Description) : 主窗口ViewModel
//
//***************************************************
using Microsoft.Practices.Prism.Commands;
using Microsoft.Practices.Prism.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace Test.Wpf.Mvvm.ViewModels
{
class MainWindowViewModel : NotificationObject
{
/// <summary>
/// 用户List
/// </summary>
private List<Models.User> users;
public List<Models.User> Users
{
get { return users; }
set
{
users = value;
RaisePropertyChanged("Users");
}
} /// <summary>
/// 程序名
/// </summary>
public string AppName { get; set; } /// <summary>
/// 电话
/// </summary>
private string phone;
public string Phone
{
get { return phone; }
set
{
phone = value;
RaisePropertyChanged("Phone");
}
} /// <summary>
/// 获取所有用户命令
/// </summary>
public DelegateCommand GetAllUsersCommand { get; set; } /// <summary>
/// 构造初始化
/// </summary>
public MainWindowViewModel()
{
AppName = "WPF MVVM 模式测试";
Phone = "123456";
GetAllUsersCommand = new DelegateCommand(new Action(GetAllUsersCommandExecute));
} /// <summary>
/// 获取所有用户命令执行方法
/// </summary>
private void GetAllUsersCommandExecute()
{
Phone = Phone.Equals("123456") ? "1234567" : "123456";
Services.UserService userService = new Services.UserService();
Users = userService.GetAllUser();
}
}
}
MainWindow.xaml页面的设计是
<Window x:Class="Test.Wpf.Mvvm.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<StackPanel Orientation="Vertical">
<StackPanel Orientation="Horizontal">
<Label Content="程序名"></Label>
<Label Content="{Binding AppName}"></Label>
</StackPanel>
<StackPanel Orientation="Horizontal">
<Label Content="电话"></Label>
<Label Content="{Binding Phone}"></Label>
</StackPanel>
<StackPanel>
<Button Content="获取所有用户" Command="{Binding GetAllUsersCommand}"></Button>
</StackPanel>
<DataGrid ItemsSource="{Binding Users}" AutoGenerateColumns="False" GridLinesVisibility="All" CanUserDeleteRows="False" CanUserAddRows="False" >
<DataGrid.Columns>
<DataGridTextColumn Header="用户名" Binding="{Binding Nameword}"></DataGridTextColumn>
<DataGridTextColumn Header="密码" Binding="{Binding Password}"></DataGridTextColumn>
</DataGrid.Columns>
</DataGrid>
</StackPanel>
</Grid>
</Window>
然后在MainWindow的交互代码中绑定ViewModel
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes; namespace Test.Wpf.Mvvm
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.DataContext = new ViewModels.MainWindowViewModel();//绑定ViewModel
}
}
}
运行一下就可以了
WPF MVVM使用prism4.1搭建的更多相关文章
-
C# WPF - MVVM实现OPC Client管理系统
前言 本文主要讲解采用WPF MVVM模式设计OPC Client的过程,算作对于WPF MVVM架构的学习记录吧!不足之处请不吝赐教,感谢! 涉及知识点 C#基础 Xaml基础 命令.通知和数据绑定 ...
-
WPF MVVM 验证
WPF MVVM(Caliburn.Micro) 数据验证 书接前文 前文中仅是WPF验证中的一种,我们暂且称之为View端的验证(因为其验证规是写在Xaml文件中的). 还有一种我们称之为Model ...
-
WPF MVVM初体验
首先MVVM设计模式的结构, Views: 由Window/Page/UserControl等构成,通过DataBinding与ViewModels建立关联: ViewModels:由一组命令,可以绑 ...
-
WPF MVVM实现TreeView
今天有点时间,做个小例子WPF MVVM 实现TreeView 只是一个思路大家可以*扩展 文章最后给出了源码下载地址 图1 图2 模版加上了一个checkbox,选中父类的checkb ...
-
WPF/MVVM 快速开始指南(译)(转)
WPF/MVVM 快速开始指南(译) 本篇文章是Barry Lapthorn创作的,感觉写得很好,翻译一下,做个纪念.由于英文水平实在太烂,所以翻译有错或者译得不好的地方请多指正.另外由于原文是针对W ...
-
A WPF/MVVM Countdown Timer
Introduction This article describes the construction of a countdown timer application written in C# ...
-
使用Prism提供的类实现WPF MVVM点餐Demo
使用Prism提供的类实现WPF MVVM点餐Demo 由于公司开发的技术需求,近期在学习MVVM模式开发WPF应用程序.进过一段时间的学习,感受到:学习MVVM模式,最好的方法就是用MVVM做几个D ...
-
ViewModel从未如此清爽 - 轻量级WPF MVVM框架Stylet
Stylet是我最近发现的一个WPF MVVM框架, 在博客园上搜了一下, 相关的文章基本没有, 所以写了这个入门的文章推荐给大家. Stylet是受Caliburn Micro项目的启发, 所以借鉴 ...
-
WPF MVVM 架构 Step By Step(6)(把actions从view model解耦)
到现在为止,我们创建了一个简单的MVVM的例子,包含了实现了的属性和命令.我们现在有这样一个包含了例如textbox类似的输入元素的视图,textbox用绑定来和view model联系,像点击but ...
随机推荐
-
4. Decision Tree
一般的,一颗决策树包含一个根结点.若干内部结点和若干叶结点:叶节点对应于决策结果,其他每个结点则对应于一个属性测试:每个结点包含的样本集合根据属性测试的结果被划分到子结点中:根结点包含样本全集.从根结 ...
-
为dedecms文章列表页标题增加序号,第二页开始才显示第x页
想必大伙建站都会写文章,随着时间的推移,你的智慧结晶会越来越多,一般的建站程序早帮你想好了,把这些文章做成一个列表,比如dedecms栏目列表,便于观众浏览,但有个问题就是dedecms文章列表页标题 ...
-
Stakeholder Risk Management
In this article we'll address the people swirling around your project: stakeholders. You'll find som ...
-
jq 7种实例化
$(html) ->$(array) $(html,{}||$(...)) $(#id) $(expr,$(...)) $(expr,context) $(dom) $(function(){} ...
-
jQuery免费资料
JQvery免豆.pdf jQuery实战之仿flash跳动的按钮效果[源码]http://down.51cto.com/data/188600JQuery 1.4.2 手册简体中文版h ...
-
转:Windows平台配置Appium+Java环境
1) 安装JDK 下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 安装 ...
-
vi 编辑器跳转到指定行数
如:跳转到25行 :set number :23
-
flash跨域访问
-------------------------------------------------------背景------------------------------------------- ...
-
CORS跨域资源共享你该知道的事儿
"唠嗑之前,一些客套话" CORS跨域资源共享,这个话题大家一定不陌生了,吃久了大转转公众号的深度技术好文,也该吃点儿小米粥溜溜胃里的缝儿了,今天咱们就再好好屡屡CORS跨域资源共 ...
-
分布式系统关注点(17)——先写DB还是「缓存」?
如果第二次看到我的文章,欢迎右侧扫码订阅我哟~