Implementing the Model-View-View-Model (MVVM) architectural pattern for Silverlight/WPF
Follow the articles in Comments.
有关使用Prism构建WPF应用或是Silverlight应用:
http://www.cnblogs.com/li-xiao/archive/2011/01/13/1934564.html
[更多…]Follow the articles in Comments.
有关使用Prism构建WPF应用或是Silverlight应用:
http://www.cnblogs.com/li-xiao/archive/2011/01/13/1934564.html
[更多…]一、.NET相关:
现在吃饭的东西,当然放在第一位了哦。
准备系统的学习下《CLR via c#》,《WPF编程宝典:c#》,需要系统的掌握下c#和WPF。
二、设计模式
设计模式这个东东还是需要深入学习和研究的。看了《大话设计模式》前几章,确实感触颇多。计划在今年仔细的研读。
You can get the document from:
http://unity.codeplex.com/releases/view/31277#DownloadId=177468 [更多…]
最近在做Client端的SliverLight开发,对整体的逻辑和开发流程大概清楚了。但是看到XAML中的trigger, behavior, storyBoard之类的,我就头大了。。。对一些比较复杂的行为的处理,脑子里也是一团糟。总结了下,还是对XAML的Binding和行为处理不清楚造成的。 [更多…]
ComeFrom:
http://lukencode.com/2010/04/14/google-weather-api-with-restsharp/
The Google Weather API is a grand service for developers to get weath [更多…]
A GUID is a 128-bit integer (16 bytes) that can be used across all computers and networks wherever a unique identifier is required. Such an identifier [更多…]
GUID(全局统一标识符)是指在一台机器上生成的数字,它保证对在同一时空中的所有机器都是唯一的。通常平台会提供生成GUID的API。生成算法很有意思,用到了以太网卡地址、纳秒级时间、芯片ID码和许多可能的数字。GUID的唯一缺陷在于生成的结果串会比较大。 GUID永远是方便的
对于程序开发的 [更多…]
Windows Communication Foundation (WCF) is an SDK for developing and deploying services on Windows. WCFprovides a runtime environment fo [更多…]
一、引言
MongoDB是一个 介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。他支持的数据结构非常松散,是类似json的bjson格 式,因此可以存储比较复杂的数据类型。Mongo最大的特点是他支持的查询语言非常强大,其语法有点类似于面向对象的查询语言, [更多…]
.NET Framework 提供了用于数据存储和检索的专用类。这些类提供对堆栈、队列、列表和哈希表的支持。大多数集合类实现相同的接口,可继承这些接口来创建适应更为专业的数据存储需要的新集合类。
System.Collections 命名空间包含接口和类,这些接口和类定义各种对象(如列表、队列、 [更多…]
Lambda expression is an inline delegate introduced with C # 3.0 language. It’s a concise way to represent an anonymous method. It provi [更多…]
Lambda表达式的本质是“匿名方法”,也即是当编译我们的程序代码时,“编译器”会自动帮我们将“Lambda表达式”转换为“匿名方法”,如下例:
string[] names = { "agen", "balen", "coure", "apple" };
string[] [更多…]