Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2011
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. using System.Windows.Documents;
  5. using System.Windows.Ink;
  6. using System.Windows.Input;
  7. using System.Windows.Media;
  8. using System.Windows.Media.Animation;
  9. using System.Windows.Shapes;
  10.  
  11. namespace _0111014
  12. {
  13. public partial class MainPage : UserControl
  14. {
  15. public MainPage()
  16. {
  17. // 必須將變數初始化
  18. InitializeComponent();
  19. Loadvideo();
  20. }
  21. public void Loadvideo()
  22. {
  23. string strYoutubePath =
  24. "<object width='650' height='500'><param name='movie' value='http://www.youtube.com/v/5wh4DGklCsg?fs=1&amp;hl=zh_TW'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='http://www.youtube.com/v/5wh4DGklCsg?fs=1&amp;hl=zh_TW' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='650' height='500'></embed></object>";
  25. this.htmlHost1.SourceHtml = strYoutubePath;
  26. }
  27. }
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement