반응형
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
- Google Spreadsheet
- SQL
- PANDAS
- array
- PostgreSQL
- GIT
- numpy
- c#
- Kotlin
- google apps script
- Google Excel
- Excel
- Python
- string
- django
- Github
- math
- Presto
- PySpark
- Tkinter
- 파이썬
- Redshift
- gas
- hive
- dataframe
- Java
- matplotlib
- Apache
- list
Archives
- Today
- Total
목록MessageBox (1)
달나라 노트
MessageBox는 흔히 프로그램을 사용할 때 발생하는 정보창/경고창 입니다. 아래 코드를 봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; Button btn = new Button(); btn.Parent = fm; btn.Text = "Button"; void btn_Click(object sender, EventArgs e) { MessageBox.Show("Msg Box Content", "Msg Box Title"); } btn.Click += new EventHandler(btn..
C#/C#
2022. 4. 4. 21:13