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

무료로 사용할 수 있는 버전들은 아래와 같이 대략 6가지 정도이다.각 컨트롤마다 완전 무료로 공개된 버전도 있지만 64비트에서만 유료로 지원하는 버전도 있다.1. MFC Grid Control (CGridCtrl) - 2015년 2.27 버전2. Ultimate Grid - 2007년 버전 7.3 (2013년에 코드 공개)3. CGridListCtrlEx - 2016년 2.4 버전4. CQuickList - 2006년5. ALX Grid Control - 2025년6. Dapfor MFC Grid - 2010년 2.3.2 버전
C, C++, MFC/C, C++, MFC 테크닉
2025. 3. 29. 10:43

# Main 화면에 표시되는 영역의 정보를 페이지 단위로 변경 > 1개 Category ROI 안에 N개 Category Page 로 구성 > Page1, Page2, Page3, ... # Main 화면에서 각 페이지를 선택하여 화면에 표시 > xaml 파일에 3개의 버튼을 생성하고 각 버튼에 Event 를 설정한다. # 소스 코드 ( MainWindow.xaml ) # 소스 코드 ( MainWindow.xaml.cs ) private void Button_Click_1(object sender, RoutedEventArgs e) { PageHome.Source = new Uri("NaviPage\\Page1.xaml", UriKind.Relative); } private void Button_Clic..
C#, WF, WPF(.NET)/C#, WF, WPF(.NET) 테크닉
2021. 11. 12. 09:29