MaKui

博客园 首页 新随笔 联系 订阅 管理

2011年9月21日 #

摘要: 介绍了WPF 资源(Resource)的一些基本使用原则。 阅读全文
posted @ 2011-09-21 22:09 MaKui 阅读(1035) 评论(0) 推荐(2) 编辑

2011年8月4日 #

摘要: 用索引属性做为databinding的数据源时,path要用中括号括起来,如下:Binding="{Binding Path=[path]}"若要实现PropertyChanged,参见下面的链接:http://stackoverflow.com/questions/657675/propertychanged-for-indexer-property 阅读全文
posted @ 2011-08-04 18:11 MaKui 阅读(207) 评论(0) 推荐(0) 编辑

2011年8月2日 #

摘要: 客户希望系统在一些特定的条件下,界面上能显示用户自定义的格式和内容,格式和内容通过html指定。基本上在wpf中显示html有以下四种方法。1. Wpf Frame controlthis.frame1.Navigate(uri);this.frame1.Source = uri;无法直接指定html内容。2. Wpf WebBrowser controlthis.webBrowser1.Navigate(source);this.webBrowser1.NavigateToStream(stream);this.webBrowser1.NavigateToString(html);this. 阅读全文
posted @ 2011-08-02 16:35 MaKui 阅读(6590) 评论(1) 推荐(0) 编辑