반응형
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
- string
- gas
- GIT
- Redshift
- Kotlin
- Google Spreadsheet
- 파이썬
- Mac
- math
- numpy
- matplotlib
- Java
- Excel
- Github
- Tkinter
- django
- Google Excel
- list
- PySpark
- PostgreSQL
- c#
- Python
- dataframe
- google apps script
- Apache
- PANDAS
- SQL
- array
- hive
Archives
- Today
- Total
목록structure (1)
달나라 노트
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bnqyNU/btryccnKzgw/csXUSVeGfHc7W5pbKpuMG1/img.png)
C#에서 Label은 텍스트를 표시해주는 역할을 합니다. 텍스트 박스라고 보면 될거같습니다. Label을 어떻게 사용하는지와 Label 객체에 적용할 수 있는 여러 설정들(글씨 색깔, 글씨 정렬 등)을 알아봅시다. 아래 코드를 실행시켜봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; Label lbl = new Label(); lbl.Parent = fm; lbl.Width = 100; lbl.Height = 50; lbl.Text = "Sample Text"; Application.Run(f..
C#/C#
2022. 4. 1. 21:51