Winphone开发
TZBiao
aassddff
展开
-
VS2012启动/加载项目出问题
未能正确加载“Microsoft.VisualStudio.Editor.Implementation.EditorPackage, Microsoft.VisualStudio.Editor.Implementation, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a”包。 此问题可能是由配置更改或安转载 2013-07-11 15:32:22 · 6273 阅读 · 0 评论 -
MVVM模式
1.定义实体,实现接口:INotifyPropertyChanged和INotifyPropertyChanging public class Course : INotifyPropertyChanged, INotifyPropertyChanging { private int _id; public int原创 2013-07-01 15:09:48 · 891 阅读 · 0 评论 -
页面导航
1.离开页面导航 NavigationService.Navigate(new Uri("/SecondPage.xaml?id=1", UriKind.RelativeOrAbsolute)); 2.接收页面接收参数 /// /// 当页面变为框架中的活动页面时调用。 /// /// protected原创 2013-07-01 22:57:08 · 1082 阅读 · 0 评论 -
转换器
1.实现IValueConverter public class TestConverter:IValueConverter { /// /// 后台数据转换成前台数据 /// /// /// /// /// /// public原创 2013-07-01 23:19:08 · 913 阅读 · 0 评论 -
应用资源
1.ListBox应用模版 1.1定义资源样式原创 2013-07-01 22:33:14 · 1014 阅读 · 0 评论 -
操作本地数据库
1.创建实体 注意加Table和Column特性 /// /// 课程类 /// [Table] //表示类将成为一个table public class Course : INotifyPropertyChanged, INotifyPropertyChanging { [Column(IsVersion = true)] //ta原创 2013-07-01 18:26:15 · 1026 阅读 · 0 评论