일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PANDAS
- matplotlib
- hive
- c#
- GIT
- Mac
- string
- django
- Github
- Kotlin
- list
- SQL
- Python
- Google Spreadsheet
- Excel
- Apache
- Google Excel
- PostgreSQL
- google apps script
- PySpark
- Java
- 파이썬
- dataframe
- numpy
- Tkinter
- array
- Redshift
- gas
- math
- Today
- Total
목록c# (87)
달나라 노트
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..
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에 생깁니다. 코드를 부분별로 해석해봅..
Window에 사용할 수 있는 Button을 생성해봅시다. 아래 코드를 실행시켜봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; Button btn = new Button(); btn.Parent = fm; btn.Text = "Sample Button"; btn.Width = 100; btn.Height = 30; Application.Run(fm); } } 그러면 위같은 화면이 뜹니다. 버튼이 Window에 생성되었고, 버튼에 Sample Button이라는 텍스트가 떠있는걸 볼 수 있죠. ..
C#에서 Label은 텍스트를 표시해주는 역할을 합니다. 텍스트 박스라고 보면 될거같습니다. Label을 어떻게 사용하는지와 Label 객체에 적용할 수 있는 여러 설정들(글씨 색깔, 글씨 정렬 등)을 알아봅시다. 아래 코드를 실행시켜봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; Label lbl = new Label(); lbl.Parent = fm; lbl.Width = 100; lbl.Height = 50; lbl.Text = "Sample Text"; Application.Run(f..