我想获取在 XAML 中创建的图像的 URI 源。图像的来源是 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?
}