摘要: 当对CheckBox使用ValidationAttribute验证时,系统没有针对bool做True的验证。需要自己写一个。代码如下: public class MustBeTrueAttribute : ValidationAttribute { protected ov... 阅读全文
posted @ 2015-06-02 17:07 咆哮 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 取得操作系统用户名称: public async static Task GetDisplayNameAsync() { string displayName = await UserInformation.GetDisplayNameAsync()... 阅读全文
posted @ 2015-06-02 16:51 咆哮 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 在win8开发中,用到了comboBox,需要对comboBox可编辑,可是在这个版本中, 不能设置为可编辑。所以只好自定义控件了。以下是刚做好的第一个版本,能对简单操作,要实现双向绑定以及自定义显示的格式,需要在完善代码,具体代码如下: 阅读全文
posted @ 2015-06-02 16:46 咆哮 阅读(353) 评论(0) 推荐(0) 编辑