일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Android
- compare
- wpf
- digitalRead
- sensor
- SERIAL
- flutter
- Class
- Contour
- java
- public
- UNO
- atmega328
- mfc
- c++
- length
- Read
- parameter
- APP
- preprocessing
- file access
- Unity
- Pointer
- stream
- inheritance
- Barcode
- Encapusulation
- aduino
- Overloading
- memory
Archives
- Today
- Total
목록start (1)
폴크(FOLC)

# 특정 시점마다 반복적으로 작업을 간단하게 진행하기 위함. > DispatcherTimer 를 이용하여 진행 # 소스 코드 using System.Windows.Threading; namespace TimerRunTEST { public partial class MainWindow : Window { private DispatcherTimer timer = new DispatcherTimer(); // 타이머 생성 public MainWindow() { InitializeComponent(); // 타이머 설정 timer.Interval = TimeSpan.FromMilliseconds(1); // 시간간격 설정 timer.Tick += new EventHandler(timer_tick_event); ..
C#, WF, WPF(.NET)/C#, WF, WPF(.NET) 테크닉
2022. 3. 4. 19:37