Files
Groupware/Project/StateMachine/_BW.cs
2018-07-23 17:35:21 +09:00

24 lines
429 B
C#

/*
* Backgroudn worker
*/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Project
{
public partial class fMain
{
Boolean bBW = true;
private void bw_DoWork(object sender, DoWorkEventArgs e)
{
while(bBW)
{
System.Threading.Thread.Sleep(1000);
}
}
}
}