Return of .NET  
宠辱不惊,静观堂前花开花落;去留无意,漫随天外云卷云舒。

2007年7月30日

摘要: MSDN中介绍得比较全面,这里只简单提一下。MSDN:http://msdn2.microsoft.com/en-us/library/ms752347.aspxWPF中有个重要的概念Dependency properties: They can determine their value by retrieving it from a Binding object (i.e. they can be bound). They can participate in property value inheritance, meaning that if a dependency property 阅读全文
posted @ 2007-07-30 21:16 消化酶 阅读(399) 评论(0) 推荐(0) 编辑
 
摘要: 2007年7月30日想必很多人都对正则表达式都头疼.今天,我以我的认识,加上网上一些文章,希望用常人都可以理解的表达方式.来和大家分享学习经验. 开篇,还是得说说 ^ 和 $ 他们是分别用来匹配字符串的开始和结束,以下分别举例说明 "^The": 开头一定要有"The"字符串; "of despair$": 结尾一定要有"of despair" 的字符串; 那么, "^abc$":... 阅读全文
posted @ 2007-07-30 14:29 消化酶 阅读(285) 评论(0) 推荐(0) 编辑