<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_静夜妙思</title><subtitle type="text">.NET 4进行中...</subtitle><id>http://feed.cnblogs.com/blog/u/7312/rss</id><updated>2011-05-17T04:37:48Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/7312/rss"/><entry><id>http://www.cnblogs.com/yuxs/archive/2011/05/17/2048726.html</id><title type="text">Visual Studio 2010 SP1 WPF程序属性重命名BUG，小心！</title><summary type="text">任意创建一个WPF窗口应用程序，在窗口中添加Button，并设置其Width属性。新建一个class（比如叫做class1），在class1中增加一个Width属性，如下：namespace WpfApplication1{ public class Class1 { public double Width { get;set; } }}将Width重命名为WidthXXX，然后按Alt+Shift+F10，进行重命名，则XAML中Button控件的Width属性将被改成WidthXXX。我在微软的问题BUG提交页面：https://connect.microsoft.com/VisualSt</summary><published>2011-05-17T04:34:00Z</published><updated>2011-05-17T04:34:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2011/05/17/2048726.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2011/05/17/2048726.html"/><content type="html">&lt;p&gt;任意创建一个WPF窗口应用程序，在窗口中添加Button，并设置其Width属性。&lt;br /&gt;新建一个class（比如叫做class1），在class1中增加一个Width属性，如下：&lt;/p&gt;&#xD;
&lt;div &gt;&#xD;
&lt;pre &gt;namespace WpfApplication1&#xD;
{&#xD;
    public class Class1&#xD;
    {&#xD;
        public double Width { get;set; }&#xD;
    }&#xD;
}&#xD;
&lt;/pre&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;p&gt;将Width重命名为WidthXXX，然后按Alt+Shift+F10，进行重命名，则XAML中Button控件的Width属性将被改成WidthXXX。&lt;/p&gt;&#xD;
&lt;p&gt;&lt;/p&gt;&#xD;
&lt;p&gt;我在微软的问题BUG提交页面：&lt;/p&gt;&#xD;
&lt;p&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/668826/visual-studio-2010-sp1-bug"&gt;https://connect.microsoft.com/VisualStudio/feedback/details/668826/visual-studio-2010-sp1-bug&lt;/a&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&lt;div  id="_mcePaste" style="position: absolute; width: 1px; height: 1px; overflow: hidden; top: 0px; left: -10000px;"&gt;﻿&lt;/div&gt;&#xD;
&lt;p&gt;我想这个问题可能对大家有害（批量改变属性，可能造成巨大损失），放在首页，希望不要遭到指责。&lt;/p&gt;&lt;img src="http://www.cnblogs.com/yuxs/aggbug/2048726.html?type=1" width="1" height="1" alt=""/&gt;&lt;p&gt;&lt;a href="http://www.cnblogs.com/yuxs/archive/2011/05/17/2048726.html" target="_blank"&gt;本文链接&lt;/a&gt;&lt;/p&gt;</content></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2009/06/08/1498592.html</id><title type="text">创建ClickOnce项目签名证书详细步骤</title><summary type="text">------ 第一步 创建X.509 证书 ------makecert.exe为证书创建工具。证书创建工具生成仅用于测试目的的 X.509 证书。它创建用于数字签名的公钥和私钥对，并将其存储在证书文件中。此工具还将密钥对与指定发行者的名称相关联，并创建一个 X.509 证书，该证书将用户指定的名称绑定到密钥对的公共部分。创建证书时会提示要求证书的私钥密码（Subject Key，两个密码输入框）...</summary><published>2009-06-08T03:59:00Z</published><updated>2009-06-08T03:59:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2009/06/08/1498592.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2009/06/08/1498592.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2008/05/27/1208058.html</id><title type="text">关于MySqlConnection的一个特殊异常</title><summary type="text">使用MySqlConnection连接MySql，在调试状态可正常连接，独立运行就出错！原来是文件名搞的鬼！</summary><published>2008-05-26T19:46:00Z</published><updated>2008-05-26T19:46:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2008/05/27/1208058.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2008/05/27/1208058.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2007/06/06/774257.html</id><title type="text">共享代码：WPF的日历控件</title><summary type="text">WPF中没有日历控件，所以我们公司自己实现一个，这也是我的“实习作品”，从学习WPF以来，算是第一个真正成型的WPF控件。</summary><published>2007-06-06T14:04:00Z</published><updated>2007-06-06T14:04:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2007/06/06/774257.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2007/06/06/774257.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2007/05/24/758863.html</id><title type="text">终于把日历控件完成了</title><summary type="text">因为WPF没有日历控件，而这又是比较常用的，所以自己写一个，但是只是作为公司统一控件的一部分，样子有点像MonthViwer。</summary><published>2007-05-24T10:57:00Z</published><updated>2007-05-24T10:57:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2007/05/24/758863.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2007/05/24/758863.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2007/04/28/731342.html</id><title type="text">Oracs Beta1 非 VPC版出来了</title><summary type="text">Oracs Beta1 非 VPC版出来了，需要的赶快去下吧(作为消息，首页放1天)</summary><published>2007-04-28T09:44:00Z</published><updated>2007-04-28T09:44:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2007/04/28/731342.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2007/04/28/731342.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2006/06/08/420999.html</id><title type="text">为什么用SOA架构？</title><summary type="text">目前软件开发面临两个难题：1）软件在不断地发展，用户需求在不断地增加，软件功能模块在不断地扩充，软件的重新设计和整合的成本成为企业无休止的投资陷阱。2）目前管理软件中不同种类的操作系统、应用软件、系统软件、数据格式相互交织，要将这些不同网络、不同平台、不同数据格式、不同软件完全统一是不可能的，只能在现有的软件、数据、平台基础上进行扩充。基于上述两点原因，我们在软件架构的上需要做出必要的调整。首先，...</summary><published>2006-06-08T12:55:00Z</published><updated>2006-06-08T12:55:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2006/06/08/420999.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2006/06/08/420999.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2005/09/17/238989.html</id><title type="text">SQL Server 2005 September CTP发布了</title><summary type="text">SQL Server 2005 September CTP发布了，任何人都可以从MS网站上下载：http://www.microsoft.com/downloads/details.aspx?familyid=8D986ECB-DBB2-43A6-9853-E539DB96EB61&amp;amp;displaylang=en这是一个能够与Visual Studio 2005 RC1安装在同一台机器上的版...</summary><published>2005-09-17T11:31:00Z</published><updated>2005-09-17T11:31:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2005/09/17/238989.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2005/09/17/238989.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2004/12/18/78696.html</id><title type="text">Visual FoxPro 9.0 发布了</title><summary type="text">经过了漫长的等待（原来说是12月15日发布），Visual FoxPro 9.0终于发布了。本来是一件挺好的事情，不过想想用了这么多年的Fox系列开发工具，今天开始从头学习C#，从一个老程序员变成一个新手，幸亏编程经验还可以用。</summary><published>2004-12-18T02:11:00Z</published><updated>2004-12-18T02:11:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2004/12/18/78696.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2004/12/18/78696.html"/></entry><entry><id>http://www.cnblogs.com/yuxs/archive/2004/12/02/72029.html</id><title type="text">VS 2005果然比VS2003增强不少东西</title><summary type="text">好不容易会用VS2003写点东西了，昨晚花了一夜好不容易把VS.NET 2005 Beta装到电脑上，打开了一个项目，竟然运行出错(base.Dispose( disposing )空指针)。　　最后也没有好办法，因为不知道新的文件组织结构是什么，后来干脆重建一个新的，设计了一下版面，又发现了一些变化，StatusBar、ToolBar、MainMenu不见了，换成了StatusStrip、Too...</summary><published>2004-12-02T05:59:00Z</published><updated>2004-12-02T05:59:00Z</updated><author><name>Muse</name><uri>http://www.cnblogs.com/yuxs/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yuxs/archive/2004/12/02/72029.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yuxs/archive/2004/12/02/72029.html"/></entry></feed>
