我想向Image
wpf 应用程序动态添加一个。
我尝试过的:
Image img = new Image();
img.Height = 100;
img.Width = 100;
img.Visibility = Visibility.Visible;
Thickness th = new Thickness(100, 100, 0, 0);
img.Margin = th;
string strUri2 = String.Format(@"pack://application:,,,/MyFirstWPF;component/Images/tt.jpg");
img.Source = new BitmapImage(new Uri(strUri2));
我知道,除非我将图像添加到内容中,否则图像不会显示。
this.Content=img;
但是这样一来,应用程序上的现有控件(形状)就会丢失。
现在,我的问题是如何在不丢失应用程序现有控件的情况下将图像添加到内容中。