Compartir a través de


PlayToReceiver.NotifyVolumeChange(Double, Boolean) Método

Definición

Notifica al receptor Reproducir para que el volumen de la reproducción de audio o vídeo haya cambiado.

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)

Parámetros

volume
Double

double

Nuevo valor para el volumen.

mute
Boolean

bool

True si el volumen se ha silenciado; de lo contrario, false.

Requisitos de Windows

Características de aplicaciones
privateNetworkClientServer

Comentarios

Para obtener un ejemplo de creación de un receptor play to de software, consulte Conversión multimedia.

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

Se aplica a

Consulte también