导航

2010年6月25日

摘要: LGPL license:可以免费使用于个人或商业软件,只需提供原始程序链接。 which means that you can use xap and dll files in commertial projects at no cost to you with the only my polite request to mention http://timeline.codeplex.com... 阅读全文

posted @ 2010-06-25 12:29 AlexCube 阅读(157) 评论(0) 推荐(0) 编辑

2010年5月14日

摘要: http://docs.hp.com/en/5992-0538/ar01s01.html 阅读全文

posted @ 2010-05-14 14:48 AlexCube 阅读(150) 评论(0) 推荐(1) 编辑

2010年4月8日

摘要: 比较好的,可以用于学习: FamilyShow : http://www.vertigo.com/FamilyShow.aspx CompositeWPF : http://compositewpf.codeplex.com Crack.Net : http://cracknetproject.codeplex.com MSDNReader : http://code.msdn.microsof... 阅读全文

posted @ 2010-04-08 17:31 AlexCube 阅读(591) 评论(0) 推荐(0) 编辑

2010年4月1日

摘要: List<DateTime> lstDates = new List<DateTime>();//这里不好直接用 lstDates[0].GetType() , lstDates 有可能为空。Type typeoflist = lstDates.GetType().GetProperty("Item").PropertyType;Console.WriteLine(type... 阅读全文

posted @ 2010-04-01 20:08 AlexCube 阅读(244) 评论(0) 推荐(0) 编辑

2010年3月25日

摘要: 对于char nvarchar(10) 等类型可用 Len函数; 但对于text,ntext,image 等类型的字段,len函数不管用,必须用DataLength函数。 阅读全文

posted @ 2010-03-25 16:55 AlexCube 阅读(37389) 评论(0) 推荐(0) 编辑

2010年3月20日

摘要: 使用Set Statistics Time On 如 SET STATISTICS TIME ON select COUNT(1) from files 返回结果: SQL Server parse and compile time: CPU time = 0 ms, elapsed time = 0 ms. SQL Server Execution Times: CPU time = ... 阅读全文

posted @ 2010-03-20 12:54 AlexCube 阅读(392) 评论(0) 推荐(0) 编辑

2010年3月15日

摘要: MSDN:http://msdn.microsoft.com/en-us/library/aa972150.aspx 使用命令行绑定没有实现代码,实现方式很简单,但功能很强大。 如 绑定Cut 按钮 阅读全文

posted @ 2010-03-15 13:33 AlexCube 阅读(452) 评论(0) 推荐(0) 编辑

2010年3月11日

摘要: 常用的有5种 Layout panels: Grid Panel Stack Panel Dock Panel Wrap Panel Canvas Panel 技巧: 避免使用固定位置 - 多使用... 阅读全文

posted @ 2010-03-11 13:48 AlexCube 阅读(359) 评论(0) 推荐(0) 编辑

2010年3月10日

摘要: 1. 添加ScriptManager1 到Asp.Net页面中 2. Page_Load 代码: 阅读全文

posted @ 2010-03-10 14:45 AlexCube 阅读(296) 评论(0) 推荐(0) 编辑

2010年3月4日

摘要: WPF有两中控件 UserControl: 由多个控件组合而成; 包含代码文件和XAML 文件; 不能使用模板和样式(Cannot be styled/templated); 继承自UserControl 如RGB颜色选择控件就是一个用户控件 CustomControl(扩展已有控件) 给已有控件添加新特性; 包含代码文件和默认样式 Themes/Generic.xaml; 可以使用样式和模... 阅读全文

posted @ 2010-03-04 17:13 AlexCube 阅读(896) 评论(0) 推荐(0) 编辑