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;
ただし、これにより、アプリの既存のコントロール (形状) が失われます。
さて、私の質問は、アプリから既存のコントロールを失わずに画像をコンテンツに追加する方法です。