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