| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- matplotlib
- Java
- Redshift
- GIT
- Excel
- dataframe
- PySpark
- 파이썬
- Presto
- PostgreSQL
- Github
- Kotlin
- gas
- numpy
- string
- list
- array
- Python
- PANDAS
- google apps script
- math
- c#
- Apache
- Tkinter
- SQL
- hive
- Google Spreadsheet
- django
- Google Excel
- Today
- Total
목록checkbox (2)
달나라 노트
CheckBox class는 Window에 체크박스를 띄울 수 있도록 해줍니다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; CheckBox chk_box = new CheckBox(); chk_box.Parent = fm; chk_box.Width = 200; chk_box.Height = 20; chk_box.Text = "Sample Check Box"; Application.Run(fm); } } 위 코드를 실행하면 위 이미지처럼 체크박스가 Window에 생깁니다. 코드를 부분별로 해석해봅..
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..