0

wp7 アプリケーションで画像をクリックして画像コントロールのソースを取得したいのですが、これを試してみましたが、解決策が得られませんでした。

Image img = new Image();
img.Source = new BitmapImage(uri);
img.Height = 105;
img.Width = 167;
img.Margin = new Thickness(Xpos, Ypos, 0, 0);
//img.Height = j;
img.MouseLeftButtonUp += new MouseButtonEventHandler(img_MouseLeftButtonUp);

void img_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
     var image = (Image)sender;
     MessageBox.Show(image.Source.ToString());
}

イメージ コントロールのソースを取得する方法を教えてください。前もって感謝します

4

1 に答える 1

0

Image.Sourceを取得するには、をに変換する必要がありSystem.Windows.Media.Imaging.BitmapImageますUriSource

MessageBox.Show(((System.Windows.Media.Imaging.BitmapImage)image.Source).UriSource.ToString());
于 2012-11-29T04:42:32.843 に答える