SoundPlayer.OnSoundLocationChanged(EventArgs) 方法

定义

引发 SoundLocationChanged 事件。

protected:
 virtual void OnSoundLocationChanged(EventArgs ^ e);
protected virtual void OnSoundLocationChanged (EventArgs e);
abstract member OnSoundLocationChanged : EventArgs -> unit
override this.OnSoundLocationChanged : EventArgs -> unit
Protected Overridable Sub OnSoundLocationChanged (e As EventArgs)

参数

e
EventArgs

包含事件数据的 EventArgs

注解

当已为此设置新的音频源路径时,将调用此方法 SoundPlayer

引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅如何:提供事件功能和 处理和引发事件

OnSoundLocationChanged 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnSoundLocationChanged(EventArgs) 时,一定要调用基类的 OnSoundLocationChanged(EventArgs) 方法,以便已注册的委托对事件进行接收。

适用于

另请参阅