摘要: 界面上2个控件,一个按钮和一个进度条using System;using System.Threading;using System.Windows.Forms;namespace WindowsFormsApplication2{ public partial class Form1 : Form {public Form1(){InitializeComponent();}//线程开始的时候调用的委托private delegate void maxValueDelegate(int maxValue);//线程执行中调用的委托private delegate void now... 阅读全文
posted @ 2012-09-27 16:58 无主之城 阅读(589) 评论(0) 推荐(0) 编辑