반응형
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
- dataframe
- matplotlib
- PySpark
- SQL
- PANDAS
- Java
- Google Spreadsheet
- Tkinter
- 파이썬
- django
- hive
- google apps script
- Redshift
- Excel
- GIT
- Apache
- c#
- numpy
- list
- math
- Google Excel
- Mac
- PostgreSQL
- Kotlin
- Python
- string
- Github
- gas
- array
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