代码改变世界

阅读排行榜

小技巧:Visual Studio 中的架构比较和数据比较

2010-02-09 11:48 by 闫妍, 259 阅读, 收藏,
摘要: 在Visual Studio 中为我们提供了针对数据库的架构和数据的差异比较功能 架构比较 通过VS菜单上的数据->架构比较->新建架构比较 打开架构比较对话框 点击新建连接,为源架构和目标架构分别建立所对应的数据库,点击确定按钮 经过比较可以看到目标数据库中缺少Users表 这里请注意了,Visual Studio 2008 不支持 SQL Server 2008 ... 阅读全文

XPath的学习

2011-03-10 16:07 by 闫妍, 257 阅读, 收藏,
摘要: XPath 是一门在 XML 文档中查找信息的语言。XPath 可用来在 XML 文档中对元素和属性进行遍历。XPath 包含一个标准函数库,是 XSLT 中的主要元素,是一个 W3C 标准。XPath 使用路径表达式来选取 XML 文档中的节点或者节点集。 1.选取节点 XPath 使用路径表达式在 XML 文档中选取节点。节点是通过沿着路径或者 step 来选取的。 2.谓语(Predicat... 阅读全文

windows服务

2011-03-30 13:32 by 闫妍, 256 阅读, 收藏,
摘要: windows服务 阅读全文

Windows Phone 自定义布局控件,继承Panel

2011-05-30 09:23 by 闫妍, 254 阅读, 收藏,
摘要: 自定义布局控件 01: using System; 02: using System.Net; 03: using System.Windows; 04: using System.Windows.Controls; 05: using System.Windows.Documents; 06: using System.Windows.Ink; 07: using Syst... 阅读全文

委托和事件

2011-03-30 13:23 by 闫妍, 254 阅读, 收藏,
摘要: 通过看一个程序我们能够更加深刻的了解委托和事件。 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { public delegate void TimeDelegate(object obj, TimeEventA... 阅读全文
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 124 下一页