반응형
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
- Tkinter
- PostgreSQL
- Google Excel
- GIT
- Presto
- Github
- Kotlin
- 파이썬
- math
- Java
- PANDAS
- django
- gas
- Excel
- google apps script
- Apache
- Redshift
- numpy
- string
- c#
- hive
- SQL
- array
- dataframe
- matplotlib
- PySpark
- Google Spreadsheet
- Python
- list
Archives
- Today
- Total
목록ClientSize (1)
달나라 노트
Form 객체를 이용해서 Window를 한번 띄워봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; Application.Run(fm); } } 그러면 위같은 Window가 뜹니다. 코드를 보면 Form의 가로 길이(Width)는 500, 세로 길이(Height)는 300으로 설정했습니다. 그래서 나타나는 Window의 크기도 가로 500, 세로 300의 길이를 가지고 있죠. 근데 여기서 길이를 의미할 때에는 한 가지 주의할 점이 있습니다. 가로 길이 500, 세로 길이 300 이라는 것은 Wi..
C#/C#
2022. 4. 20. 19:43