반응형
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
- Redshift
- Github
- dataframe
- PANDAS
- PySpark
- gas
- Apache
- PostgreSQL
- Google Excel
- array
- Python
- Tkinter
- numpy
- Mac
- google apps script
- 파이썬
- GIT
- list
- matplotlib
- hive
- Excel
- math
- c#
- Kotlin
- string
- Google Spreadsheet
- django
- Java
- SQL
Archives
- Today
- Total
목록combobox (1)
달나라 노트
C# : ListBox, ComboBox
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..
C#/C#
2022. 4. 4. 19:52