-
[WPF] DispatcherTimerC#/WPF 2024. 7. 1. 08:47
일정 시간주기로 이벤트 실행.
using System; using System.Windows.Threading; private void InitTimer() { DispatcherTimer timer = new DispatcherTimer(); // 1초 마다 Tick 됩니다. timer.Interval = TimeSpan.FromMilliseconds(1000); // Event 특성상 여러 이벤트를 등록시킬 수 있습니다. timer.Tick += Timer_Tick; timer.Tick += Timer_Tick2; timer.Start(); } private void Timer_Tick(object sender, System.EventArgs e) { // logic here } private void Timer_Tick2(object sender, System.EventArgs e) { // logic here }
https://chashtag.tistory.com/46
728x90'C# > WPF' 카테고리의 다른 글
[WPF] gRPC Shutdown, Exit (0) 2024.08.01 [WPF] Installer, Setup project (0) 2024.07.10 [WPF] ItemsControl , UIelement 반복 (0) 2024.06.26 [WPF] Async Await (0) 2024.06.19 [WPF] UI Test with Appium (1) 2024.06.13 댓글