1
如何在不使用xaml的情況下將圖像反映到wpf中?我有一個BitmapImageBrush矩形填充。我希望能夠在C#中隨意來回翻轉此圖像(X軸)。我已閱讀關於使用ScaleTransform屬性,但這似乎只在xaml中工作,這不是我想要的。圖像在WPF中翻轉
這是怎樣的映像創建:
ImageBrush l = new ImageBrush(new BitmapImage(new Uri(uriPath, UriKind.Relative)));
_animation.Add(l);
_visual = new Rectangle();
_visual.Fill = _animation[0];
_visual.Width = width;
_visual.Height = height;
_visual.Visibility = Visibility.Visible;
_window.GameCanvas.Children.Add(_visual);
_animation是ImageBrushes的列表。 這真的很簡單,但我似乎無法弄清楚如何去做。請幫忙。