delegate Thread 的簡單使用
using System;
using System.Windows.Forms;
using System.Threading;
namespace _Delegate
{
delegate void GetDelegate();
delegate void DelegateStart();
delegate void TimeSprogressStep(int index);
delegate void DelegateFinished(string Message);
public partial class Form1 : Form
{
Thread aThread;
DelegateStart delegatestart;
TimeSprogressStep timesprogressstep;
DelegateFinished delegatefinished;
static int icount = 0;
int sum = 0;
public Form1()
{
InitializeComponent();
delegatestart = new DelegateStart(this.Start);
timesprogressstep = new TimeSprogressStep(this.TimeSprogresStep);
delegatefinished = new DelegateFinished(this.DelegateFinished);
}
private void btnThread(object sender, EventArgs e)
{
aThread = new Thread(new ThreadStart(this.thread_Ms));
aThread.IsBackground = true;
aThread.Start();
}
private void Start()
{
this.lblcontent.Text = "";
sum = 1000;
this.timeprogressBar.Maximum = sum;
this.button2.Enabled = false;
}
private void TimeSprogresStep(int index)
{
this.timeprogressBar.PerformStep();
this.lblcontent.Text = string.Format("Status:{0}",index);
}
private void DelegateFinished(string mess)
{
this.button2.Enabled = true;
this.timeprogressBar.Value = 0;
}
protected void thread_Ms()
{
icount = 0;
this.Invoke(delegatestart);
while (icount < sum)
{
timeprogressBar.Invoke(this.timesprogressstep, new object[] { icount});
Application.DoEvents();
icount++;
}
this.Invoke(this.delegatefinished, new object[] { "全部完成!"});
}
private void btnDelegate(object sender, EventArgs e)
{
GetDelegate mDelegate = new GetDelegate(this.thread_Ms);
mDelegate();
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-539613/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 簡單總結一下NotificationCenter、KVC、KVO、Delegate
- 代理的基本使用(delegate)
- Kdevelop的簡單使用和簡單除錯dev除錯
- docker的簡單使用Docker
- postman的簡單使用Postman
- RecyclerView的簡單使用View
- git的簡單使用Git
- LayUi的簡單使用UI
- RocketMQ的簡單使用MQ
- Vue簡單的使用Vue
- Cookie的簡單使用Cookie
- HttpClient的簡單使用HTTPclient
- explain for 的簡單使用AI
- OD的簡單使用
- JAVA進階:一個簡單Thread緩衝池的實現Javathread
- shell script的簡單使用
- uuid的簡單使用UI
- Mackdown簡單的使用教程Mac
- react hooks 的簡單使用ReactHook
- vue框架的簡單使用Vue框架
- phprpc的簡單使用PHPRPC
- opencv CvMLData的簡單使用OpenCVLDA
- 【SQLite】SQLite的簡單使用SQLite
- mysql的event的簡單使用MySql
- 簡單使用 rocketmqMQ
- GCDAsyncSocket 簡單使用GC
- JPTabBar簡單使用tabBar
- Quartz 簡單使用quartz
- Github 簡單使用Github
- gorm 簡單使用GoORM
- ListView簡單使用View
- GCD簡單使用GC
- 簡單,使用WKWebViewWebView
- git簡單使用Git
- sftp簡單使用FTP
- redux簡單使用Redux
- jq 簡單使用
- C#中的delegateC#