반응형
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 apps script
- Kotlin
- numpy
- Python
- Google Excel
- list
- Tkinter
- Google Spreadsheet
- GIT
- c#
- 파이썬
- hive
- math
- Excel
- Java
- Redshift
- PySpark
- SQL
- gas
- django
- Github
- array
- Presto
- PostgreSQL
- Apache
- matplotlib
- string
- dataframe
- PANDAS
Archives
- Today
- Total
목록SystemSounds (1)
달나라 노트
System.Media 하위에는 여러 미디어관련 기능들이 있습니다. 그 중에서 System.Media.SystemSounds.Beep은 시스템의 경고음을 의미합니다. using System; class MyProgram { public static void Main() { System.Media.SystemSounds.Beep.Play(); } } 경고음(Beep)을 실행하려면 위처럼 Play() method를 사용해야 합니다. 위 코드를 실행시키면 Window 자체의 경고음이 들립니다. System.Media.SystemSounds.Beep.Play(); System.Media.SystemSounds.Asterisk.Play(); System.Media.SystemSounds.Hand.Play(); S..
C#/C#
2022. 4. 20. 20:31