0

我需要在我的应用程序中获取 YouTube 视频 Thumb。有时只需要为一个视频显示视频缩略图,有时需要为三个视频。

要显示一个视频的视频缩略图,我使用此代码

<Image Name="imgVideo1" Margin="0" Source="{Binding PreviewVideo1}" Visibility="Collapsed" Tap="imgVideo_Tap" />

还有这个

if (GetPostByID(e.Result).NumberOfVideos == 1)
   imgVideo1.Visibility = Visibility.Visible;

并在 YouTube 应用上使用这个

private void imgVideo1_Tap(object sender, System.Windows.Input.GestureEventArgs e)
{
    WebBrowserTask wbTask = new WebBrowserTask();
    wbTask.Uri = new Uri("http://www.youtube.com/embed/" + ytVideoID + "?autoplay=1");
    wbTask.Show();
}

但我需要动态创建图像控件的数量,NumberOfVideos 的依赖...

4

1 回答 1

0

您的解决方案将是这样的--->

total = GetPostByID(e.Result).NumberOfVideos;

    if(total > 0)
    {
       count = 1;
       While(count <= total)
       {
          Image img = new Image();
          img.Tap += (o, e) =>
          {
             WebBrowserTask wbTask = new WebBrowserTask();
             wbTask.Uri = new Uri("http://www.youtube.com/embed/" + ytVideoID + "?autoplay=1");
             wbTask.Show();
          };
          Container.Children.Add(img);
       }
    }
于 2013-05-15T13:49:03.923 回答