반응형
특정 시간으로 기준으로 이벤트 발생하는 방법입니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private bool delay = true;
private System.Threading.Timer _timer = null;
private delegate void TimerDelegate();
private void TimerCallBack(object obj)
{
TimerDelegate _delegate = new TimerDelegate(DO_EVENT);
_delegate.Invoke();
}
private void DO_EVENT()
{
if (delay)
{
delay = false;
Trace.WriteLine(string.Format("{0} {1}", DateTime.Now, "-- 첫번째 실행"));
_timer.Change(TimeSpan.FromSeconds(3), TimeSpan.Zero); // 3초후 한번더 실행
}
else
{
Trace.WriteLine(string.Format("{0} {1}", DateTime.Now, "-- 두번째 실행(첫번째 실행 3초후 실행)"));
delay = true;
_timer.Dispose();
}
}
private void button1_Click(object sender, EventArgs e)
{
_timer = new System.Threading.Timer(TimerCallBack);
Trace.WriteLine(string.Format("{0} {1}", DateTime.Now, "-- 시작"));
_timer.Change(TimeSpan.FromSeconds(5), TimeSpan.Zero); // 5초후 한번 실행
}
}
}
|
cs |
'Windows' 카테고리의 다른 글
C# Selenium 특정요소 기다리는 방법 (wait.Until, CancellationToken) (0) | 2022.11.15 |
---|---|
[C#] 근사값 구하기 (0) | 2022.02.06 |
PID를 알고 있을때 process kill 방법 (0) | 2021.12.16 |
C# parent & child process PID 찾기 (0) | 2021.12.16 |
ARP Scan Console (0) | 2021.04.03 |