2009年5月20日
摘要: 淡入效果1//渐显方法2:private void ComeOn(){ for (double d = 0.01; d < 1; d += 0.11) { System.Threading.Thread.Sleep(15); Application.DoEvents(); this.Opacity = d; this.Refresh(); }}淡入效果2stringcaozuo="";//窗... 阅读全文
posted @ 2009-05-20 12:25 D.Henry 阅读(251) 评论(0) 推荐(0)
摘要: protected void Button1_Click(object sender, EventArgs e) { System.Diagnostics.Process p = new System.Diagnostics.Process(); System.Diagnostics.ProcessStartInfo pinfo = new System.Diagnostics.ProcessSt... 阅读全文
posted @ 2009-05-20 10:47 D.Henry 阅读(250) 评论(0) 推荐(0)