반응형
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
- Google Spreadsheet
- c#
- hive
- google apps script
- Python
- 파이썬
- SQL
- Mac
- PostgreSQL
- array
- Github
- PySpark
- math
- Kotlin
- Tkinter
- gas
- Google Excel
- list
- numpy
- GIT
- Apache
- Redshift
- django
- string
- Java
- matplotlib
- Excel
- PANDAS
- dataframe
Archives
- Today
- Total
목록MenuStrip (1)
달나라 노트
C# : MenuStrip, ToolStripMenuItem
MenuStrip은 Window에 Menu Bar를 추가할 수 있도록 해줍니다. 아래 코드를 봅시다. using System; using System.Windows.Forms; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; MenuStrip ms = new MenuStrip(); ms.Parent = fm; ToolStripMenuItem menu_1 = new ToolStripMenuItem("Fruits"); ToolStripMenuItem menu_1_1 = new ToolStripMenuItem("Apple"); ToolStripMenuItem menu_1_2 = ..
C#/C#
2022. 4. 4. 21:02