我想获取在XAML中创建的图像的URI Source。图像的来源是BitmapFrame。我知道你可以使用BitmapImage.UriSource进行BitmapImages,但是BitmapFrames呢?
要获取我使用的BitmapFrame:
private void imgs_Loaded(object sender, MouseEventArgs e)
{
Image img = (Image)sender;
BitmapFrame frame = (BitmapFrame)img.Source;
//How to get frame's UriSource?
}