반응형
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
- Kotlin
- SQL
- array
- c#
- Java
- Google Excel
- google apps script
- Apache
- hive
- Mac
- gas
- GIT
- Python
- 파이썬
- Github
- numpy
- Excel
- list
- PANDAS
- Tkinter
- math
- string
- django
- PostgreSQL
- dataframe
- PySpark
- Google Spreadsheet
- Redshift
- matplotlib
Archives
- Today
- Total
목록MinimizeBox (1)
달나라 노트
C# : MaximizeBox, MinimizeBox (Window 최대화 최소화 on off)
MaximizeBox는 Window의 최대화 가능 여부를 설정합니다. MaxsimizeBox = true --> 최대화 가능 MaxsimizeBox = false --> 최대화 불가 MinimizeBox 는 Window의 최소화 가능 여부를 설정합니다. MinimizeBox = true --> 최소화 가능 MinimizeBox = false --> 최소화 불가 using System; using System.Windows.Forms; class Sample2 : Form { public static void Main() { Form fm = new Form(); fm.Width = 200; fm.Height = 200; Application.Run(fm); } } 보통 위처럼 Window를 띄우면 우측 ..
C#/C#
2022. 5. 24. 00:55