반응형
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
- string
- list
- hive
- Github
- dataframe
- gas
- 파이썬
- array
- Java
- Apache
- c#
- PySpark
- Python
- Kotlin
- Google Excel
- Redshift
- math
- Google Spreadsheet
- PostgreSQL
- Tkinter
- numpy
- matplotlib
- GIT
- google apps script
- PANDAS
- Excel
- Mac
- django
- SQL
Archives
- Today
- Total
목록radiobutton (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