摘要: 直接贴出代码indices里面是一个int[]集合 包括了选择项在listbox中的索引集合每次删除一项会导致listbox重绘,这样之前的选择项可能可能被刷新了,可能导致删除不全用"BeginUpdate 批量操作 EndUpdate"可以避免删除一项刷新一次 阅读全文
posted @ 2010-09-29 14:24 asight 阅读(2424) 评论(0) 推荐(0) 编辑
摘要: 淡入淡出效果很简单,给个例子先:private void Form1_Load(object sender, EventArgs e) { for (int c = 0; c != 10; c++) { this.Opacity += 0.1; //睡眠一会 } } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { for (int c = 10; c != 0; c--) { this.Opacity -= 0.1; //睡眠一会 } }退出的时候是这样的效果,但是显示没有这个效果,无意中试了一下在 阅读全文
posted @ 2010-07-26 15:37 asight 阅读(378) 评论(0) 推荐(0) 编辑
摘要: WMI Extends the possibilities of .NET and simplifies the life while working onNetworkAdapters. The Following Code snippet lists all the Network adapters along with the IP Address, Subnet Mask, Default Gateway.////////////////////////////////////////////--List Settings--////////////////////////////// 阅读全文
posted @ 2010-07-26 15:33 asight 阅读(543) 评论(0) 推荐(1) 编辑