我想从打开的Flash视频中手动控制全屏播放/暂停。
一切正常,但是我需要手动控制视频。
这是我在CefSharp中使用的命令。
Cef.EnableHighDPISupport();
var settings = new CefSettings()
{
CachePath = Path
.Combine(Environment
.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "CefSharp\\Cache")
};
Cef.Initialize(settings, performDependencyCheck: true, browserProcessHandler: null);
那之后我打开网站
chrome = new ChromiumWebBrowser("website");
this.Controls.Add(chrome);
chrome.Dock = DockStyle.Fill;
This is the bar open with de flash video
是否可以在不单击诸如的条形按钮的情况下播放视频
Window.FlashControl.BarCommand.Play() // Just a suggest