반응형
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 | 29 | 30 | 31 |
Tags
- gas
- Redshift
- matplotlib
- Excel
- Kotlin
- 파이썬
- hive
- PySpark
- numpy
- array
- SQL
- google apps script
- PostgreSQL
- PANDAS
- list
- c#
- Github
- dataframe
- Tkinter
- string
- Google Spreadsheet
- django
- Apache
- Python
- Java
- math
- Mac
- GIT
- Google Excel
Archives
- Today
- Total
목록groupBox (1)
달나라 노트
C# : RadioButton, GroupBox
RadioButton은 여러 선택지 중 하나를 선택하는 체크박스입니다. 아래 코드를 봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 300; fm.Height = 250; GroupBox grp = new GroupBox(); grp.Parent = fm; grp.Text = "Radio Group"; grp.Dock = DockStyle.Top; RadioButton radio_btn_1 = new RadioButton(); RadioButton radio_btn_2 = new RadioButton(); radio_btn_1.P..
C#/C#
2022. 4. 4. 19:33