Exemplo n.º 1
0
 public void PlayVideo(string videoID)
 {
     BrowserView browser = new BrowserView();
     browser.PlayVideo(videoID);
     browser.Show();
     browser.BringToFront();
 }
Exemplo n.º 2
0
 public void DisplayImage(string imageUrl)
 {
     BrowserView browser = new BrowserView();
     browser.DisplayImage(imageUrl);
     browser.Show();
     browser.BringToFront();
 }