摘要: 淡入淡出效果很简单,给个例子先: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) 编辑