次の方法で共有


PlayToReceiver.NotifyVolumeChange(Double, Boolean) メソッド

定義

オーディオまたはビデオの再生の音量が変更されたことを再生受信者に通知します。

public:
 virtual void NotifyVolumeChange(double volume, bool mute) = NotifyVolumeChange;
void NotifyVolumeChange(double const& volume, bool const& mute);
public void NotifyVolumeChange(double volume, bool mute);
function notifyVolumeChange(volume, mute)
Public Sub NotifyVolumeChange (volume As Double, mute As Boolean)

パラメーター

volume
Double

double

ボリュームの新しい値。

mute
Boolean

bool

ボリュームがミュートされている場合は True。それ以外の場合は false。

Windows の要件

アプリの機能
privateNetworkClientServer

注釈

ソフトウェアの Play To レシーバーを作成する例については、「 メディア キャスト」を参照してください。

void VideoPlayer_VolumeChanged(object sender, RoutedEventArgs e)
{
    if (receiver != null)
        receiver.NotifyVolumeChange(VideoPlayer.Volume, VideoPlayer.IsMuted);
}
Sub VideoPlayer_VolumeChanged()
    If receiver IsNot Nothing Then
        receiver.NotifyVolumeChange(VideoPlayer.Volume, VideoPlayer.IsMuted)
    End If
End Sub

適用対象

こちらもご覧ください