반응형
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- django
- SQL
- Apache
- array
- GIT
- Excel
- Java
- gas
- hive
- matplotlib
- google apps script
- Redshift
- dataframe
- Github
- PANDAS
- numpy
- 파이썬
- math
- Google Spreadsheet
- list
- Tkinter
- Python
- PySpark
- c#
- string
- Kotlin
- Presto
- PostgreSQL
- Google Excel
Archives
- Today
- Total
목록CheckBox Event (1)
달나라 노트
C#에 존재하는 여러 소스(Source) 중 CheckBox와 CheckBox에 적용할 수 있는 Event 처리를 봅시다. 먼저 아래 예시는 CheckBox를 생성하는 부분입니다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Text = "Sample Window"; fm.Width = 300; fm.Height = 200; CheckBox chk = new CheckBox(); chk.Text = "Test Check Box"; chk.Width = fm.Width / 2; chk.Height = 20; chk.Checked = false; chk..
C#/C#
2022. 4. 1. 01:26