0

我需要在 LongListMultiSelector 中显示我的设备 (WP8) 中存在的所有照片。我用这个方法

 MediaPlayer.Queue.ToString();
        MediaLibrary mediaLibrary;
        PictureAlbum cameraRoll = null;


        foreach (MediaSource source in MediaSource.GetAvailableMediaSources())
        {
            if (source.MediaSourceType == MediaSourceType.LocalDevice)
            {
                mediaLibrary = new MediaLibrary(source);
                PictureAlbumCollection allAlbums = mediaLibrary.RootPictureAlbum.Albums;
                foreach (PictureAlbum album in allAlbums)
                {
                    if (album.Name == "Camera Roll")
                    {
                        cameraRoll = album;
                    }
                }
            }
        }

        List<BitmapImage> lstBitmapImage = new List<BitmapImage>();
        foreach (Picture p in cameraRoll.Pictures)
        {
            BitmapImage b = new BitmapImage();
            b.SetSource(p.GetThumbnail());
            lstBitmapImage.Add(b);
        }


        PhotoHubLLS.ItemsSource = lstBitmapImage;

在 XAML 中我有这个图像设置

<Image HorizontalAlignment="Left" Margin="6,6,0,0" Name="image1" Stretch="Fill" VerticalAlignment="Top" Source="{Binding}"/>

这一切都很完美,但我有一些问题。

我想放大单张图片,在图像点击时我要插入此代码

FrameworkElement fe = sender as FrameworkElement;
        if (fe != null)
        {
            CurrentPicture = fe.DataContext as Picture;
        }

但是因为我使用了“源”,所以数据上下文为空。

我能怎么做?

4

1 回答 1

0

这取决于您连接的事件。如果您正在处理 SelectionChanged 事件,则可以从 SelectionChangedEventArgs 事件参数参数中的 addedItems 集合中检索 BitmapImage(不是图片):

private void LongListSelector_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    if (e.AddedItems.Count > 0)
    {
        BitmapImage bmp = e.AddedItems[0] as BitmapImage;
    }
}

或者,如果您正在处理 LongListSelector 的 ItemTemplate 中的 Image 元素的 Tap 事件,那么您可以从 sender 参数中检索 BitmapImage:

Image imgElement = sender as Image;
BitmapImage bmp = imgElement.Source as BitmapImage;
于 2013-11-16T01:27:44.260 回答