在Windows手机上获取图像的文件路径

时间:2013-09-06 09:54:45

标签: c# windows-phone-8 filepath

我正在开发一个Windows Phone 8应用程序并且已经有一些图片已经填充到这样的列表框中

<ListBox x:Name="Control" ItemsSource="{Binding Pictures}">
    <ListBox.ItemTemplate>
         <DataTemplate>
              <Grid Background="WhiteSmoke" Margin="10">
                    <Image Source="{Binding Source}" Margin="10"/>
              </Grid>
         </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

ViewModel在简介中很简单

public class MainPageViewModel : NotificationObject
{
    private ObservableCollection<Picture> _pictures;

    public MainPageViewModel()
    {
        Pictures = new ObservableCollection<Picture>
            {
                new Picture
                    {
                        Source = new BitmapImage(new Uri("../Images/Pictures/1.jpg", UriKind.Relative))
                    }
                 //Add more images here
            };
    }

    public ObservableCollection<Picture> Pictures
    {
        get { return _pictures; }
        set
        {
            _pictures = value;
            RaisePropertyChanged(() => Pictures);
        }
    }
}

我现在希望通过点击图片,用户可以获得共享选项

 void ShowShareMediaTask(object sender, GestureEventArgs e)
 {
      ShareMediaTask shareMediaTask = new ShareMediaTask();
      shareMediaTask.FilePath = //something needs to go here
      shareMediaTask.Show();
 }

我是如何获得此图像的物理(完整)路径的?

2 个答案:

答案 0 :(得分:13)

看起来您正在引用存储在应用程序文件夹(项目中)中的图像,因此ShareMediaTask无法访问它。

ShareMediaTask要求照片位于媒体库中。

您需要做的是将照片保存在媒体库中,然后使用保存图像的路径调用ShareMediaTask(不要忘记添加using Microsoft.Xna.Framework.Media.PhoneExtensions;以访问GetPath()扩展方法)。

var picture = mediaLibrary.SavePicture(fileName, stream);
shareMediaTask = new ShareMediaTask();
shareMediaTask.FilePath = picture.GetPath(); // requires using Microsoft.Xna.Framework.Media.PhoneExtensions;
shareMediaTask.Show();

答案 1 :(得分:0)

是的...您可以按照以下代码生成列表框的点击事件

private void Control_Tap(object sender, System.Windows.Input.GestureEventArgs e)
    {


        ObservableCollection<Picture> pictureobj=new ObservableCollection<Picture>();
        ListBox lst = (ListBox)sender;
        int i = lst.SelectedIndex;
        if (lst.SelectedValue == null)
        {
        }
        else
        {
            Pictures obj = (Pictures)lst.SelectedValue;
           ShareMediaTask shareMediaTask = new ShareMediaTask();
           shareMediaTask.FilePath = obj.yoursetterimagepath
           shareMediaTask.Show();

        }
    }

希望它会帮助你