일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- PostgreSQL
- math
- gas
- PySpark
- hive
- c#
- Python
- string
- Kotlin
- Redshift
- Excel
- list
- Tkinter
- SQL
- Mac
- Java
- numpy
- PANDAS
- Google Spreadsheet
- Apache
- matplotlib
- Github
- Google Excel
- array
- google apps script
- django
- 파이썬
- dataframe
- Today
- Total
목록분류 전체보기 (847)
달나라 노트

MenuStrip은 Window에 Menu Bar를 추가할 수 있도록 해줍니다. 아래 코드를 봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; MenuStrip ms = new MenuStrip(); ms.Parent = fm; ToolStripMenuItem menu_1 = new ToolStripMenuItem("Fruits"); ToolStripMenuItem menu_1_1 = new ToolStripMenuItem("Apple"); ToolStripMenuItem menu_1_2 = ..

TextBox는 사용자가 문자를 직접 입력할 수 있도록 해주는 class입니다. 아래 코드를 봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; TextBox tb = new TextBox(); tb.Parent = fm; Application.Run(fm); } } 위 코드를 실행하면 아래 이미지처럼 뭔가를 입력할 수 있는 칸이 생긴 것을 볼 수 있습니다. 이것을 TextBox라고 합니다. 위 코드를 해석해봅시다. Form fm = new Form(); fm.Width = 500; fm.Hei..

ListBox와 ComboBox는 여러 요소들 중 하나를 선택할 수 있는 기능을 제공합니다. ListBox와 ComboBox의 차이는 아래와 같습니다. ListBox -> 요소들을 한번에 모두 나타내줍니다. 요소를 한 화면에 나타내지 못할 경우 스크롤을 발생시킵니다. ComboBox -> 요소들을 드롭다운에 나타내줍니다. 먼저 ListBox를 봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; ListBox list_box = new ListBox(); list_box.Parent = fm; s..

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..