12 2012 档案

摘要:Code Rule NoteMicrofost.DesignCA1001:具有可释放字段的类型应该是可释放的using System;using System.IO;namespace DesignLibrary{ // This class violates the rule. public class NoDisposeMethod { FileStream newFile; public NoDisposeMethod() { newFile = new FileStream(@"c:\temp.txt", FileMode.Open); } } // This cl 阅读全文
posted @ 2012-12-21 09:40 xiaokang088 阅读(1190) 评论(0) 推荐(0) 编辑
摘要:Custom Controls and UI Automationhttp://blogs.msdn.com/b/patrickdanino/archive/2009/11/11/custom-controls-and-ui-automation.aspxUI Automation of a WPF Custom Controlhttp://msdn.microsoft.com/en-us/library/cc165614.aspx 阅读全文
posted @ 2012-12-17 18:31 xiaokang088 阅读(168) 评论(0) 推荐(0) 编辑
摘要:如何本地化 Windows Phone 应用程序标题http://msdn.microsoft.com/zh-cn/library/ff967550(v=VS.92).aspx如何构建 Windows Phone 本地化应用程序http://msdn.microsoft.com/zh-cn/library/ff637520(v=vs.92).aspx 阅读全文
posted @ 2012-12-16 15:05 xiaokang088 阅读(105) 评论(0) 推荐(0) 编辑