0
我正在開發我的eyetracking Windows窗體應用程序。我需要播放視頻並同時跟蹤眼球運動。 Eyetracking部分完成了,現在我需要打開一個視頻。我可以打開一個DialogBox來選擇要播放的視頻,但我需要全屏,以便進行更精確的操作。C#全屏播放嵌入式Windows Media Player
在我的視頻流類我有:
public static string videoPath;
public VideoStream(string path)
{
InitializeComponent();
videoPath = path;
axWindowsMediaPlayer1.URL = videoPath;
axWindowsMediaPlayer1.Dock = DockStyle.Fill;
}
與dockstyle填充,我可以讓我的形式最大化,但視頻是在一個小屏幕like this
,但我想要的只是玩實際上是this
我試圖使用axWindowsMediaPlayer1.fullScreen = true;
,但只是擴展窗體的邊界,而不是視頻本身。我該如何解決這個問題?