private void StartEmbededPlayer()
        {
            var wnd = new VideoPlaybackWindow();

            wnd.Show();
            if (ScreenHandler.AllScreens > 1)
            {
                wnd.ShowOnMonitor(1);
            }
            wnd.WindowState = WindowState.Maximized;
            wnd.VideoFile   = VideoFile;
            wnd.Volume      = SoundVolume * 1;

            wnd.Play();
        }
Esempio n. 2
0
 public void Play()
 {
     InitVideoWindow();
     m_VideoPlaybackWindow.Play();
 }