Files
Groupware/Project/StateMachine/_BW.cs
chikyun.kim 2d4fe18264 item, project 를 별도 분리
lov 생성
personalInventoryToolStripMenuItem_Click 기능 추가
2018-09-18 12:46:53 +09:00

24 lines
452 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(5000);
}
}
}
}