标签: c# wpf image
我在WPF中有一个经典的Image控件。当我从文件系统中选择图像时,源会更新,但属性ActualHeight和ActualWidth保持为0。是否有任何方法可以强制刷新或进行其他操作?
源加载:
var img = new BitmapImage(new Uri(fileDialog.FileName));
然后在调试模式下的下一步img.ActualHeight和img.ActualWidth均为0