WinForm中的MVC模式--MVP模式
本文主要介绍MVC模式在WINFORM中的实现,其实砖家们都称它为MVP模式,小弟E文不太好,真的是记不住那个P怎么拼写的。。
MVC模式主要解决的问题就是将表示层和业务层进行分离,在以往做WINFORM项目的时候,通常都是将很多的逻辑代码直接写在了Form.cs代码的事件里,这样的话业务逻辑就和界面紧耦合在一起了,现在我们采用MVC来解耦。
首先建立Model:
-
using System;
-
using System.Collections.Generic;
-
using System.Linq;
-
using System.Text;
-
using System.ComponentModel;
-
-
namespace WindowsFormsApplication10
-
{
-
public class Person : INotifyPropertyChanged
-
{
-
private string _id;
-
public string ID
-
{
-
get { return _id; }
-
set { _id = value; OnPropertyChanged("ID"); }
-
}
-
private string _name;
-
-
public string Name
-
{
-
get { return _name; }
-
set { _name = value; OnPropertyChanged("Name"); }
-
}
-
-
#region INotifyPropertyChanged 成员
-
-
public event PropertyChangedEventHandler PropertyChanged;
-
-
protected void OnPropertyChanged(string PropertyName)
-
{
-
PropertyChangedEventHandler handler = PropertyChanged;
-
if (handler != null)
-
{
-
handler(this, new PropertyChangedEventArgs(PropertyName));
-
}
-
}
-
#endregion
-
}
-
-
}
为了能支持双向绑定数据,Model实现了INotifyPropertyChanged接口.
再看看Controllor的实现:
-
using System;
-
using System.Collections.Generic;
-
using System.Linq;
-
using System.Text;
-
-
namespace WindowsFormsApplication10
-
{
-
public class PersonControllor
-
{
-
public PersonForm View;
-
-
public Person Model;
-
-
public PersonControllor(PersonForm view)
-
{
-
//初始化了一个Model
-
Model = new Person() { ID = "1", Name = "xiaojun" };
-
//通过构造函数将View注入到Controllor中
-
this.View = view;
-
-
//建立起View 和Controllor的关联
-
//这时候View中能使用它所对应的Controllor进行业务逻辑的操作,Model也能和VIEW UI控件进行双向绑定
-
this.View.Controllor = this;
-
-
}
-
-
-
/// <summary>
-
/// 执行一个业务逻辑
-
/// </summary>
-
public void UpdatePerson()
-
{
-
UpdateToDataBase(Model);
-
}
-
-
private void UpdateToDataBase(Person p)
-
{
-
//do some thing
-
//执行将数据插入到数据库的操作
-
System.Windows.Forms.MessageBox.Show("ID:" + p.ID + " Name:" + p.Name);
-
}
-
-
-
}
-
}
然后是View的实现:
-
using System;
-
using System.Collections.Generic;
-
using System.ComponentModel;
-
using System.Data;
-
using System.Drawing;
-
using System.Linq;
-
using System.Text;
-
using System.Windows.Forms;
-
-
namespace WindowsFormsApplication10
-
{
-
public partial class PersonForm : Form
-
{
-
private PersonControllor _controllor;
-
-
public PersonControllor Controllor
-
{
-
get { return _controllor; }
-
set
-
{
-
this._controllor = value;
-
//绑定一定只能写在给Controllor赋值以后而不能写在PersonForm的构造函数中(此时Controllor还未被实例化)
-
//因为我们这里采用的是Controllor-First而不是View-First,不然Controllor.Model为null会异常
-
//将View通过构造函数注入到Controllor中的属于Controllor-First,这时候Controllor先创建
-
//将Controllor通过构造函数注入到View中的属于View-First,这时候View先创建
-
this.textBox1.DataBindings.Add("Text", Controllor.Model, "ID");
-
this.textBox2.DataBindings.Add("Text", Controllor.Model, "Name");
-
}
-
}
-
-
-
-
-
-
public PersonForm()
-
{
-
InitializeComponent();
-
-
-
}
-
-
private void button1_Click(object sender, EventArgs e)
-
{
-
//改变VIEW的UI控件的值,Controllor的Model会跟着变
-
this.textBox1.Text = "2";
-
this.textBox2.Text = "jacky";
-
Controllor.UpdatePerson();
-
}
-
-
private void button2_Click(object sender, EventArgs e)
-
{
-
//改变Controllor的Model的值,VIEW的UI控件的值会跟着变
-
Controllor.Model.ID = "2";
-
Controllor.Model.Name = "jacky";
-
-
Controllor.UpdatePerson();
-
}
-
-
private void PersonForm_Load(object sender, EventArgs e)
-
{
-
-
}
-
}
-
}
最后是程序启动:
-
using System;
-
using System.Collections.Generic;
-
using System.Linq;
-
using System.Windows.Forms;
-
-
namespace WindowsFormsApplication10
-
{
-
static class Program
-
{
-
/// <summary>
-
/// 应用程序的主入口点。
-
/// </summary>
-
[STAThread]
-
static void Main()
-
{
-
Application.EnableVisualStyles();
-
Application.SetCompatibleTextRenderingDefault(false);
-
//Controllor-First模式,先创建Controllor(PersonControllor)再将View(PersonForm)注入到Controllor(PersonControllor)中
-
PersonControllor controllor = new PersonControllor(new PersonForm());
-
Application.Run(controllor.View);
-
}
-
}
-
}
例子--转摘
WinForm中的MVC模式--MVP模式的更多相关文章
- 前端开发中的 MVC、MVP、MVVM 模式
MVC,MVP和MVVM都是常见的软件架构设计模式(Architectural Pattern),它通过分离关注点来改进代码的组织方式.不同于设计模式(Design Pattern),只是为了解决一类 ...
- Android中的MVC,MVP和MVVM
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha MVC,MVP,MVVM的区别 #MVC 软件可以分为三部分 视图(View):用户界面 ...
- MVP模式在Android项目中的使用
以前在写项目的时候,没有过多考虑架构模式的问题,因为之前一直做J2EE开发,而J2EE都是采用MVC模式进行开发的,所以在搭建公司项目的时候,也是使用类似MVC的架构(严格来讲,之前的项目还算不上MV ...
- MVP模式在Android开发中的应用
一.MVP介绍 随着UI创建技术的功能日益增强,UI层也履行着越来越多的职责.为了更好地细分视图(View)与模型(Model)的功能,让View专注于处理数据的可视化以及与用户的交互.同一 ...
- MVP模式在Android中的使用
转载了一篇博客.博客来自:http://www.liuling123.com/2015/12/mvp-pattern-android.html 觉得博主写的非常好 曾经在写项目的时候.没有过多考虑架构 ...
- MVC、MVP、MVVM模式的概念与区别
1. MVC框架 MVC全名是Model View Controller,是模型(model)-视图(view)-控制器(controller)的缩写,一种软件设计典范,用一种业务逻辑.数据.界面显示 ...
- .Net平台-MVP模式初探(一)
为什么要写这篇文章 笔者当前正在负责研究所中一个项目,这个项目基于.NET平台,初步拟采用C/S部署体系,所以选择了Windows Forms作为其UI.经过几此迭代,我们发现了一个问题:虽然业务逻辑 ...
- MVP模式(Android)
以前在写项目的时候,没有过多考虑架构模式的问题,因为之前一直做J2EE开发,而J2EE都是采用MVC模式进行开发的,所以在搭建公司项目的时候,也是使用类似MVC的架构(严格来讲,之前的项目还算不上MV ...
- 【Android - 框架】之MVP模式的使用
提起MVP架构模式,大家可能首先想到的是它的"前辈"MVC模式.MVC由Model.View.Controller组成,请求从Controller进入后进行业务判断,然后交给Mod ...
- MVP模式入门案例
随着UI创建技术的功能日益增强,UI层也履行着越来越多的职责.为了更好地细分视图(View)与模型(Model)的功能,让View专注于处理数据的可视化以及与用户的交互,同时让Model只关系数据的处 ...
随机推荐
- 织梦dedecms网站迁移搬家图文教程
织梦dedecms网站迁移搬家图文教程 2014-07-31 dedecms教程 文章介绍 织梦作为国内使用最多的程序之一,难免很多新手在接触dede时不知道怎么转移也就是搬家dede的程序,而且 ...
- RabbitMQ学习第七章:消息确认机制之事务机制
RabbitMQ消息确认机制之事务机制. RabbitMQ中,我们可以通过持久化数据 解决RabbitMQ服务器异常 的数据丢失问题. 问题:生产者将消息发送出去,消息到底有没有到达RabbitMQ服 ...
- Nginx+UWSGI+supervisor
Tengine是由淘宝网发起的Web服务器项目.它在Nginx的基础上,针对大访问量网站的需求,添加了很多高级功能和特性.Tengine的性能和稳定性已经在大型的网站如淘宝网,天猫商城等得到了很好的检 ...
- hashMap 获取里面value最大的值得key
public static void main(String[] args) { Map<String, Integer> map = new HashMap(); map.put(&qu ...
- get 和 post 请求在缓存方面的区别
get 请求类似于查找的过程,用户获取数据,可以不用每次都与数据库连接,所以可以 使用缓存. post 不同,post 做的一般是修改和删除的工作,所以必须与数据库交互,所以不能使用 缓存.因此 ge ...
- hdfs操作——hdfs的shell命令和hdfs的JavaAPI操作
hdfs解决hadoop海量数据的存储. shell 命令(所有hadoop fs 可由 hdfs dfs代替) (1) 在hdfs上创建目录 hadoop fs -mkdir 目录名 (2) 本地文 ...
- google api 后端打点上报
https://developers.google.com/analytics/devguides/collection/protocol/ga4/sending-events?client_type ...
- 【相关杂项】stdio.h中的sprintf函数/union的作用
1.定义int sprintf(char *str, const char *format, ...) 1.paras:*str:目标字符串首指针 *format:要写入目标字符串的 ...
- WebService接口实际场景应用(一)
背景:要求写一套接口测试工具.过程中遇到了WebService接口的问题,遂写下本篇文章. 阶段问题1: 需要利用数据驱动,然后读取excel中的数据并直接调用.但是webService接口与http ...
- 莫凡Python之keras 2
莫凡Python 2 kearsregressionpython Classifier 分类 使用 mnist 数据集,这是0-9的图片数据,我们使用神经网络去识别这些图片.显示图片上的数据 本质上是 ...