<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/shenhaha001" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/shenhaha001" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 14 May 2008 15:28:00 GMT</lastBuildDate><title>shenhaha001的专栏</title><link>http://blog.csdn.net/shenhaha001/</link><item><title>CommandArgument的一种用法</title><link>http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2445398.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2445398.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2445398</trackback:ping><description>以下示例说明如何在 .aspx 文件中声明 command 按钮控件。 &amp;nbsp;&amp;lt;asp:Button id=&quot;SortAscendingButton&quot; Text=&quot;Sort Ascending&quot; CommandName=&quot;Sort&quot; CommandArgument=&quot;Ascending&quot; OnCommand=&quot;CommandBtn_Click&quot; runat=&quot;server&quot;/&amp;gt; 以下示例显示一个事件处理方法，该方法获取按钮单击并显示从该按钮的 CommandName 和 CommandArgument 属性中传递的信息。 &amp;nbsp;[C#] void CommandBtn_Click(Object sender, CommandEventArgs e) &amp;nbsp;{&amp;nbsp;&amp;nbsp; Message.Text = &quot;You clicked the &quot; + e.CommandName + &quot; - &quot;+e.CommandArgument + &quot; button.&quot;; } &amp;nbsp; 可以用CommandArgument属性绑定一些数据，比如在DataView中的&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2445398.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 14 May 2008 23:28:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380653/5475261</fs:itemid></item><item><title>c＃接口与抽象类的区别</title><link>http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2393133.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2393133.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2393133</trackback:ping><description>abstract 修饰符用于表示所修饰的类是不完整的，并且它只能用作基类。抽象类与非抽象类在以下方面是不同的：抽象类不能直接实例化，并且对抽象类使用 new运算符是编译时错误。虽然一些变量和值在编译时的类型可以是抽象的，但是这样的变量和值必须或者为null，或者含有对非抽象类的实例的引用（此非抽象类是从抽象类派生的）。允许（但不要求）抽象类包含抽象成员。抽象类不能被密封。当从抽象类派生非抽象类时，这些非抽象类必须具体实现所继承的所有抽象成员，从而重写那些抽象成员。在下面的示例中abstract class A{public abstractvoid F();}abstract class B:A{public void G() {}}class C: B{public overridevoid F() {// actualimplementation of F}}抽象类 A 引入抽象方法 F。类 B 引入另一个方法 G，但由于它不提供 F 的实现，B 也必须声明为抽象类。类C 重写F，并提供一个具体实现。由于 C 中没有了抽象成员，因此可以（但并非必须）将 C 声明为非抽象类。接口(i&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2393133.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 05 May 2008 21:56:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380654/5475261</fs:itemid></item><item><title>C# 同一窗体一次只打开一个实列(单态)</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2319760.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2319760.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2319760</trackback:ping><description>&lt;h2&gt;&lt;a id=&quot;ajaxholder_ctl01_titleurl&quot; href=&quot;http://www.cnblogs.com/xingfustar/archive/2006/03/16/351615.html&quot;&gt;&lt;br /&gt;&lt;/a&gt; &lt;/h2&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;在窗体中加入如下代码&lt;br /&gt;&lt;div style=&quot;border: 1px solid rgb(204, 204, 204); padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: rgb(238, 238, 238);&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;private&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;static&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2319760.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 24 Apr 2008 11:47:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380655/5475261</fs:itemid></item><item><title>Form2操作FORM1的方法 (委托方法)</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2313414.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2313414.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2313414</trackback:ping><description>//&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2313414.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 22 Apr 2008 08:39:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380656/5475261</fs:itemid></item><item><title>Form2操作FORM1的方法</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2313388.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2313388.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2313388</trackback:ping><description>//&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2313388.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 22 Apr 2008 08:09:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380657/5475261</fs:itemid></item><item><title>在DataGridView中获得DataGridViewCheckBoxColumn的状态</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308332.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308332.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308332</trackback:ping><description>datagridview&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2308332.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 Apr 2008 09:04:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380658/5475261</fs:itemid></item><item><title>使用DataGridView更新数据库</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308330.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308330.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308330</trackback:ping><description>DataGridView&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2308330.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 Apr 2008 09:02:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380659/5475261</fs:itemid></item><item><title>DataGridView的具体应用(1)-右键单击后选中所在行及弹出上下文菜单,通过事件捕获所选行的ID号及单元格内容</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308323.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308323.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308323</trackback:ping><description>datagridview&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2308323.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 Apr 2008 08:52:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380660/5475261</fs:itemid></item><item><title>C#DataGridView分页显示代码详解</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308319.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308319.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308319</trackback:ping><description>DataGridView&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2308319.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 Apr 2008 08:49:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380661/5475261</fs:itemid></item><item><title>DataGridView</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx</link><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308315.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308315.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308315</trackback:ping><description>DataGridView&lt;img src =&quot;http://blog.csdn.net/shenhaha001/aggbug/2308315.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sun, 20 Apr 2008 08:48:00 +0800</pubDate><author>shenhaha001</author><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx</guid><dc:creator>shenhaha001</dc:creator><fs:srclink>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/shenhaha001/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/shenhaha001/~7365745/207380662/5475261</fs:itemid></item></channel></rss>