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(); }
public void Play() { InitVideoWindow(); m_VideoPlaybackWindow.Play(); }