public void PlayVideo(string videoID) { BrowserView browser = new BrowserView(); browser.PlayVideo(videoID); browser.Show(); browser.BringToFront(); }
public void DisplayImage(string imageUrl) { BrowserView browser = new BrowserView(); browser.DisplayImage(imageUrl); browser.Show(); browser.BringToFront(); }