2011年3月12日

Windows Phone 7 定义和使用字典资源(ResourceDictionary)

摘要: 1、首先需要创建一个资源字典的文件,也就是一个xaml的文件。文件的语法格式如下Test.xaml<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:chartingToolkit="clr-namespace:System.Windows.Controls.DataVisualization.Cha 阅读全文

posted @ 2011-03-12 12:47 linzheng 阅读(2068) 评论(2) 推荐(2) 编辑

MVVM模式介绍

摘要: MVVM:模型-视图-视图模型(Model-View-ViewModel) 组成部分Model、View、ViewModelView:UI界面ViewModel:它是View的抽象,负责View与Model之间信息转换,将View的Command传送到Model;Model:数据访问层View与ViewModule连接可以通过下面的方式Binding Data:实现数据的传递Command:实现操作的调用AttachBehavior:实现控件加载过程中的操作View没有大量代码逻辑。结合WPF、Silverlight绑定机制,MVP演变出了MVVM,充分利用了WPF、Silverlight的优 阅读全文

posted @ 2011-03-12 00:23 linzheng 阅读(41674) 评论(2) 推荐(6) 编辑

导航