通常、長方形の背景画像を次のコードに変更できます。
ImageBrush brush1 = new ImageBrush();
BitmapImage image = new BitmapImage(new Uri(System.IO.Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName) + "\\images\\image\\MessageEtkileşim.png"));
brush1.ImageSource = image;
renctangle.Fill = brush1;
しかし、ボタンを rectangle にすると、ボタンの背景は変更されません。以下のコードを試しましたが、機能しませんでした。
ImageBrush brush1 = new ImageBrush();
BitmapImage image = new BitmapImage(new Uri(System.IO.Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName) + "\\images\\image\\MessageEtkileşim.png"));
brush1.ImageSource = image;
renctanglebutton.Background = brush1;