Поделиться через


PlayToReceiver.NotifyPlaying Метод

Определение

Уведомляет приемник воспроизведения о начале воспроизведения звука или видео.

public:
 virtual void NotifyPlaying() = NotifyPlaying;
void NotifyPlaying();
public void NotifyPlaying();
function notifyPlaying()
Public Sub NotifyPlaying ()

Требования к Windows

Возможности приложения
privateNetworkClientServer

Комментарии

Пример создания программного приемника воспроизведения на см. в разделе Приведение мультимедиа.

void VideoPlayer_CurrentStateChanged(object sender, RoutedEventArgs e)
{
    if (receiver != null)
    {
        switch (VideoPlayer.CurrentState)
        {
            case MediaElementState.Playing:
                receiver.NotifyPlaying();
                break;
            case MediaElementState.Paused:
                receiver.NotifyPaused();
                break;
            case MediaElementState.Stopped:
                receiver.NotifyStopped();
                break;
        }
    }
}

void VideoPlayer_MediaFailed(object sender, ExceptionRoutedEventArgs e)
{
    if (receiver != null) { receiver.NotifyError(); }
}
Sub VideoPlayer_CurrentStateChanged()

    If receiver IsNot Nothing Then
        Select Case VideoPlayer.CurrentState
            Case MediaElementState.Playing
                receiver.NotifyPlaying()
            Case MediaElementState.Paused
                receiver.NotifyPaused()
            Case MediaElementState.Stopped
                receiver.NotifyStopped()
        End Select
    End If
End Sub

Sub VideoPlayer_MediaFailed()
    If receiver IsNot Nothing Then receiver.NotifyError()
End Sub

Применяется к

См. также раздел