Jecho

导航

上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页

2014年8月22日 #

process monitor教程汇总

摘要: 这是只一个简单的例子,当然还有更复杂的规则说明,可以参考一下列表里的规则。最后说下processmonitor到底有什么用?除了那些电脑高手喜欢分析程序运行情况外,还有那些编程人员对程序运行情况的分析,及查找电脑内是否有木马的情况等。第二部分:一个使用实例(微软ProcessMonitor证实“窥私... 阅读全文

posted @ 2014-08-22 11:00 Jecho 阅读(1804) 评论(0) 推荐(0) 编辑

Fixed: The Windows Process Activation Service service terminated with the following error: The system cannot find the file specified

摘要: I'm not yet clear what I did, but I'm blogging it so it can be found if someone else has this issue.For whatever reason, last week both of my Vista 64... 阅读全文

posted @ 2014-08-22 10:59 Jecho 阅读(1574) 评论(0) 推荐(0) 编辑

2014年8月20日 #

ObservableCollection 类

摘要: 假设您正在创建 Windows 窗体应用程序,并且已将 DataGridView 控件绑定到标准 List(Of Customer) 数据结构。您希望能够使网格中的项目与基础数据源中的值保持同步。也就是说,如果其他代码或其他窗体更改了 List 中用户的数据,您希望网格随之更新并显示修改的数据。通常... 阅读全文

posted @ 2014-08-20 15:43 Jecho 阅读(307) 评论(0) 推荐(0) 编辑

玩转INotifyPropertyChanged和ObservableCollection

摘要: 本文的代码都是基于WPF的,对于Silverlight,这些技术也同样适用。 (一)INotifyPropertyChanged的使用场合 先写一个最简单的数据绑定,每次点击Button后,TextBlock的值都会自增1。 效果图如下所示: 这里使用了MVVM模式,并把Click事件抽象为了Co... 阅读全文

posted @ 2014-08-20 15:27 Jecho 阅读(1683) 评论(0) 推荐(0) 编辑

在IIS中寄存服务

摘要: http://blog.csdn.net/songyefei/article/details/7381595第三篇 在IIS中寄宿服务通过前两篇的学习,我们了解了如何搭建一个最简单的WCF通信模型,包括定义和实现服务协定、配置服务、寄宿服务、通过添加服务引用的方式配置客户端并访问服务。我们对WCF的... 阅读全文

posted @ 2014-08-20 10:09 Jecho 阅读(422) 评论(0) 推荐(0) 编辑

2014年8月15日 #

WPF:为什么使用ContentPresenter.ContentSource而不是Content属性?

摘要: 因为ContentPresenter.ContentSource比Content属性加一个TemplateBinding看起来更方便?不仅仅是这些,实际上如果用ContentSource的话,Content相关的属性比如ContentStringFormat,ContentTemplate和Cont... 阅读全文

posted @ 2014-08-15 13:58 Jecho 阅读(602) 评论(0) 推荐(1) 编辑

正确理解WPF中的TemplatedParent

摘要: (注:Logical Tree中文称为逻辑树,Visual Tree中文称为可视化树或者视觉树,由于名称不是很统一,文中统一用英文名称代表两个概念,况且VisualTreeHelper和LogicalTreeHelper也是WPF中提供的类名称) 众所周知WPF中的Logical Tree是逻辑上定... 阅读全文

posted @ 2014-08-15 11:20 Jecho 阅读(673) 评论(0) 推荐(0) 编辑

Difference between List View and DataGrid in WPF

摘要: Well, in WPF the difference between ListView and DataGrid is just one. Editing. You need editing use DataGrid, otherwise use ListView. You can edit in... 阅读全文

posted @ 2014-08-15 10:59 Jecho 阅读(211) 评论(0) 推荐(0) 编辑

WPF DataGrid ListView 等等 改变 选中行 颜色;以及 不变的原因

摘要: WPF中改变选中行的颜色是很简单的,就是用触发器:比如:以DataGrid为例: DataGrid.RowStyle Style TargetType= DataGridRow SetterProperty= Background Value= White / Style .Triggers Tri... 阅读全文

posted @ 2014-08-15 10:57 Jecho 阅读(814) 评论(0) 推荐(1) 编辑

WPF DataGrid、ListView 简单绑定

摘要: DataGrid运行效果: xaml 代码: DataGridName= dtgData ItemsSource= {Binding} AutoGenerateColumns= False DataGrid.Columns DataGridTextColumnBinding= {BindingPat... 阅读全文

posted @ 2014-08-15 10:56 Jecho 阅读(855) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页