全部博文(1293)
发布时间:2015-03-31 17:04:37
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace TaskBar { public pa.........【阅读全文】
发布时间:2015-03-31 14:50:30
按Hashtable中的值得大小就行排序 原理同上:实际上是按照每一个字符的ASCII的值就行排序的。从左到右比较每个字符的Ascii的值,直到满足两个字符的ASCII的值不同即停止比较。 参考文献: http://blog.sina.com.cn/s/blog_5f120d690100odit.html.........【阅读全文】
发布时间:2015-03-28 17:17:00
C#Form和Load和Shown这两个玩意容易混淆不? 案例测试一下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LoadShown { .........【阅读全文】
发布时间:2015-03-25 18:07:30
datagridview中要实现下面的效果,如何处理? private string[] mColorArray = new string[] { "#ff0000","#9933ff","#0000ff","#9900ff","#ff6600", "#cc3333","#006600", .........【阅读全文】
发布时间:2015-03-19 14:55:16
初学winform的时候,一直以为winform中的combox只能添加简单的仅有text的item,而不象aspx中的listitem那样即有text,又有value,结果很快发现自己错了,以下是一个示例:先声明一个类 public class ClsItemObject { public stri.........【阅读全文】