<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>shenhaha001的专栏</title><link>http://blog.csdn.net/shenhaha001/</link><description /><dc:language>zh-CN</dc:language><lastUpdateTime>Wed, 28 May 2008 00:23:43 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>shenhaha001</dc:creator><title>CommandArgument的一种用法</title><link>http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx</link><pubDate>Wed, 14 May 2008 15:28:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2445398.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/05/14/2445398.aspx#Feedback</comments><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="SortAscendingButton" Text="Sort Ascending" CommandName="Sort" CommandArgument="Ascending" OnCommand="CommandBtn_Click" runat="server"/&amp;gt; 以下示例显示一个事件处理方法，该方法获取按钮单击并显示从该按钮的 CommandName 和 CommandArgument 属性中传递的信息。 &amp;nbsp;[C#] void CommandBtn_Click(Object sender, CommandEventArgs e) &amp;nbsp;{&amp;nbsp;&amp;nbsp; Message.Text = "You clicked the " + e.CommandName + " - "+e.CommandArgument + " button."; } &amp;nbsp; 可以用CommandArgument属性绑定一些数据，比如在DataView中的&lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2445398.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>c＃接口与抽象类的区别</title><link>http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx</link><pubDate>Mon, 05 May 2008 13:56:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2393133.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/05/05/2393133.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2393133.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>C# 同一窗体一次只打开一个实列(单态)</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx</link><pubDate>Thu, 24 Apr 2008 03:47:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2319760.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/24/2319760.aspx#Feedback</comments><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="ajaxholder_ctl01_titleurl" href="http://www.cnblogs.com/xingfustar/archive/2006/03/16/351615.html"&gt;&lt;br /&gt;&lt;/a&gt; &lt;/h2&gt;&lt;span style="font-size: 10pt;"&gt;在窗体中加入如下代码&lt;br /&gt;&lt;div style="border: 1px solid rgb(204, 204, 204); padding: 4px 5px 4px 4px; font-size: 13px; width: 98%; background-color: rgb(238, 238, 238);"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;private&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&amp;nbsp;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;static&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2319760.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>Form2操作FORM1的方法 (委托方法)</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx</link><pubDate>Tue, 22 Apr 2008 00:39:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2313414.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313414.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2313414.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>Form2操作FORM1的方法</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx</link><pubDate>Tue, 22 Apr 2008 00:09:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2313388.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/22/2313388.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2313388.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>在DataGridView中获得DataGridViewCheckBoxColumn的状态</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx</link><pubDate>Sun, 20 Apr 2008 01:04:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308332.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308332.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2308332.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>使用DataGridView更新数据库</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx</link><pubDate>Sun, 20 Apr 2008 01:02:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308330.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308330.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2308330.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>DataGridView的具体应用(1)-右键单击后选中所在行及弹出上下文菜单,通过事件捕获所选行的ID号及单元格内容</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx</link><pubDate>Sun, 20 Apr 2008 00:52:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308323.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308323.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2308323.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>C#DataGridView分页显示代码详解</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx</link><pubDate>Sun, 20 Apr 2008 00:49:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308319.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308319.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2308319.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>DataGridView</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx</link><pubDate>Sun, 20 Apr 2008 00:48:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308315.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308315.aspx#Feedback</comments><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 ="http://blog.csdn.net/shenhaha001/aggbug/2308315.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>获取 Windows 窗体 DataGridView 控件中选定的单元格、行和列</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308312.aspx</link><pubDate>Sun, 20 Apr 2008 00:46:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308312.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308312.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308312.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308312.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308312</trackback:ping><description>DataGridView &lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2308312.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>如何使用户能像Excel一样方便的复制Datagridview中的单元格区域数据[C#]</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308307.aspx</link><pubDate>Sun, 20 Apr 2008 00:42:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308307.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308307.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308307.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308307.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308307</trackback:ping><description>如何使用户能像Excel一样方便的复制Datagridview中的单元格区域数据&lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2308307.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>把DataGridView的结果传入Excel</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308281.aspx</link><pubDate>Sun, 20 Apr 2008 00:19:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308281.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2308281.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/20/2308281.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2308281.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2308281</trackback:ping><description>DataGridView输出&lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2308281.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>HTML中小meta的大作用</title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/16/2298700.aspx</link><pubDate>Wed, 16 Apr 2008 22:01:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/16/2298700.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2298700.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/16/2298700.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2298700.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2298700</trackback:ping><description>//&lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2298700.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>shenhaha001</dc:creator><title>meta是html语言head区的一个辅助性标签。 </title><link>http://blog.csdn.net/shenhaha001/archive/2008/04/16/2298680.aspx</link><pubDate>Wed, 16 Apr 2008 21:55:00 GMT</pubDate><guid>http://blog.csdn.net/shenhaha001/archive/2008/04/16/2298680.aspx</guid><wfw:comment>http://blog.csdn.net/shenhaha001/comments/2298680.aspx</wfw:comment><comments>http://blog.csdn.net/shenhaha001/archive/2008/04/16/2298680.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/shenhaha001/comments/commentRss/2298680.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2298680</trackback:ping><description>//&lt;img src ="http://blog.csdn.net/shenhaha001/aggbug/2298680.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>