ImageEdit 展示图片(XAML, C#)

  <dxe:ImageEdit Source="/Gemr;component/Images/FakeUI/MedicalRecordFake.jpg" 
                       Stretch="Fill"
            ></dxe:ImageEdit>

绝对路径:

img.Source=new BitmapImage(new Uri(@"d:photoackgrpundsarch.jpb"));

相对路径:

img.Source=new BitmapImage(new Uri("images/winter.jpg", UriKind.Relative));

原文地址:https://www.cnblogs.com/quietwalk/p/3557915.html