上一页 1 2 3 4 5 6 7 ··· 19 下一页
  2014年3月20日
摘要: 比喻:像漂流瓶一样发送一个Message,任何人有兴趣就可以拾起来。MVVM Light中的Message的使用分为三个步骤:1.创建一个类,包含要传递的Message。2.在ViewModel中,实例化这个Message类并广播这个Message。3.在MainPage.xaml.cs中注册此Me... 阅读全文
posted @ 2014-03-20 22:29 cw_volcano 阅读(896) 评论(0) 推荐(0) 编辑
摘要: 开发工具:VS2010BlendPrism框架基本概念:数据绑定,依赖属性,依赖对象WPF 委托式命令 Icommand接口Lambda表达式MVVM(Model-View-ViewModel)介绍:{View=UI;Model=抽象事物;Viewmodel=Model for View;即View的建模}ViewMode与前台View传递的方法{传递数据-数据属性(双向)传递操作-命令属性(单向,只能从View传递给ViewMode)}开闭原则(OCP):对于扩展是开放的(Open for extension)对于修改是关闭的(Closed for modification)也就是说,如果项 阅读全文
posted @ 2014-03-20 13:05 cw_volcano 阅读(1786) 评论(0) 推荐(0) 编辑
摘要: WPF中时常会遇到ViewModel之间的通讯,ViewModel并不知道自己的View,但是一个View发生的更改需要通知另外一个View。举一个例子,软件界面上有个人信息,打开一个界面更改用户的信息后,这时显示个人信息的地方理应发生变化。此场景下更改用户后应该通知另一个显示用户信息的区域去更新。... 阅读全文
posted @ 2014-03-20 12:55 cw_volcano 阅读(1391) 评论(0) 推荐(0) 编辑
  2014年3月12日
摘要: private static void Write(string sMsg, string fileName) { if (sMsg != "") { try { var dir = new FileInfo(Assembly.GetEntryAssembly().Location).DirectoryName + "\\log\\"; if (!Directory.Exists(dir)) ... 阅读全文
posted @ 2014-03-12 22:10 cw_volcano 阅读(512) 评论(0) 推荐(0) 编辑
  2014年2月25日
摘要: 一:1.foreach (int val in Enum.GetValues(typeof(AppEnum.HarbourStatus))){ ddlStatus.Items.Add(new ListItem(Enum.GetName(typeof(AppEnum.HarbourStatus), val), val.ToString()));}ddlStatus.Items.FindByText(AppEnum.HarbourStatus.Avtal.ToString()).Selected = true;2.public enum HarbourStatus{ ... 阅读全文
posted @ 2014-02-25 11:37 cw_volcano 阅读(311) 评论(0) 推荐(0) 编辑
  2014年2月22日
摘要: ·只有inserted表有数据时,当前操作为insert;·inserted和deleted两张表都有数据时,当前操作为update;·只有deleted表有数据时,当前操作为delete。 1. 2. 3.如何调试触发器: 一、打开SQL查询分析器二、将以下Sql语句复制到查询窗口并运行use p 阅读全文
posted @ 2014-02-22 13:15 cw_volcano 阅读(14727) 评论(0) 推荐(0) 编辑
  2014年2月20日
摘要: using System;using System.Linq;using System.Xml.Linq;using DFS.Kiosk.Provider.Simulator.Common.Utilities;using DFS.Kiosk.Provider.Simulators.Utilities... 阅读全文
posted @ 2014-02-20 09:51 cw_volcano 阅读(347) 评论(0) 推荐(0) 编辑
  2014年2月19日
摘要: To Install an SSL Certificate in Microsoft IIS 7ClickStart, mouse-overAdministrative Tools, and then clickInternet Services Manager.In theInternet Information Services (IIS) Managerwindow, select your server.Scroll to the bottom, and then double-clickServer Certificates.From theActionspanel on the r 阅读全文
posted @ 2014-02-19 09:46 cw_volcano 阅读(745) 评论(0) 推荐(0) 编辑
  2014年2月13日
摘要: 1.BUILD->Configuration Management...2.When you guys add new projects to the kiosk solution please be sure to remove them from the Release configuratio... 阅读全文
posted @ 2014-02-13 09:51 cw_volcano 阅读(156) 评论(0) 推荐(0) 编辑
  2014年2月9日
摘要: 解决方法: 阅读全文
posted @ 2014-02-09 09:49 cw_volcano 阅读(178) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 19 下一页