程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#調用聲音函數(PlaySound,Beep,MessageBeep等)

C#調用聲音函數(PlaySound,Beep,MessageBeep等)

編輯:關於C語言
<一>Visual Basic Beep()

1.使用Visual Basic Beep函數;添加引用 Miscorsoft Visual Basic Runtime

2.調用 Interaction.Beep();

<二>使用MessageBeep(unit uType):需添加 using System.Runtime.InteropServices;

public const int MB_ICONEXCLAMATION =  48;

  [DllImport("user32.dll")]
  public static extern bool MessageBeep(uint uType);

MessageBeep( MB_ICONEXCLAMATION );

<三>調用Beep(Int freq,int duration)函數

  [DllImport("kernel32.dll")]
  public static extern bool Beep(int freq,int duration);

Beep(800,300);

<四>調用PlaySound(string pszSound,int hmod,int fdwSound)
  [DllImport("winmm.dll")]
  public static extern bool PlaySound(string pszSound,int hmod,int fdwSound);
  public const int SND_FILENAME = 0x00020000;
  public const int SND_ASYNC = 0x0001;

PlaySound("提示時奏幻想空間.WAV",0,SND_ASYNC|SND_FILENAME);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved