欢迎来到天天文库
浏览记录
ID:23290531
大小:1.04 MB
页数:11页
时间:2018-11-06
《现有silverlight程序使用mvvmlight开发框架教程》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、现有Silverlight程序使用mvvmlight开发框架教程1孙高勇学习整理2012-03-161)创建Silverlight应用程序。2)添加mvvmlight引用,如果使用模板创建,会自动生成引用,而这里我们需要自己添加。3)添加ViewModels、Locators、Models文件夹。4)为MainWindow添加ViewModel,在解决方案浏览器中,右键ViewModel文件夹,添加新类,类名称为MainViewModel,如果安装了mvvmlight模板,选择类模板为MvvmViewModel5)添加类ViewMode
2、lLocator,我们叫它ViewModel加载器,在解决方案浏览器中,右键项目名称,添加新类,类名称为ViewModelLocator,如果安装了mvvmlight模板,选择类模板为MvvmViewModelLocator。6)打开App.Xaml,先添加ViewModel命名控件引用,然后为ViewModelLocator添加一个全局的资源,app.xaml的内容如下:3、m/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:vm="clr-namespace:SilverlightApplication8.Locators4、"mc:Ignorable="d">1)打开MainWindow.xaml文件,首先为MainWindow设置DataContext为MainViewModel,MainWindow.xaml代码如下:6、//schemas.microsoft.com/winfx/2006/xaml"xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"xmlns:uriMapper="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"xmlns:d="http://schemas.micros7、oft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d"d:DesignWidth="640"d:DesignHeight="480"DataContext="{BindingMain,Source={StaticResourceLocator}}">。。。。。。2)我们把MainPage的HyperlinkButton更改为Command绑定,通过传递参数的方式8、导航,这么做的好处可以把不同模块按需加载。MainViewModel中增加了一个LoadUrlCommand的RelayCommand命令。MainViewModel.cs的代码:usingGalaSoft
3、m/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:vm="clr-namespace:SilverlightApplication8.Locators
4、"mc:Ignorable="d">1)打开MainWindow.xaml文件,首先为MainWindow设置DataContext为MainViewModel,MainWindow.xaml代码如下:6、//schemas.microsoft.com/winfx/2006/xaml"xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"xmlns:uriMapper="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"xmlns:d="http://schemas.micros7、oft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d"d:DesignWidth="640"d:DesignHeight="480"DataContext="{BindingMain,Source={StaticResourceLocator}}">。。。。。。2)我们把MainPage的HyperlinkButton更改为Command绑定,通过传递参数的方式8、导航,这么做的好处可以把不同模块按需加载。MainViewModel中增加了一个LoadUrlCommand的RelayCommand命令。MainViewModel.cs的代码:usingGalaSoft
6、//schemas.microsoft.com/winfx/2006/xaml"xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"xmlns:uriMapper="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"xmlns:d="http://schemas.micros
7、oft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d"d:DesignWidth="640"d:DesignHeight="480"DataContext="{BindingMain,Source={StaticResourceLocator}}">。。。。。。2)我们把MainPage的HyperlinkButton更改为Command绑定,通过传递参数的方式
8、导航,这么做的好处可以把不同模块按需加载。MainViewModel中增加了一个LoadUrlCommand的RelayCommand命令。MainViewModel.cs的代码:usingGalaSoft
此文档下载收益归作者所有