반응형
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
- numpy
- GIT
- matplotlib
- math
- hive
- gas
- Github
- google apps script
- Google Excel
- Kotlin
- Excel
- list
- string
- c#
- Apache
- PostgreSQL
- Google Spreadsheet
- PySpark
- SQL
- Tkinter
- dataframe
- PANDAS
- 파이썬
- django
- Java
- Mac
- Python
- Redshift
- array
Archives
- Today
- Total
목록text box (1)
달나라 노트
C# : Label (Text Box, 텍스트 박스, 구조체, Structure, 글자 스타일, Font, FontStyle, 폰트스타일)
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