■95550 / inTopicNo.1) |
WPF 画像のタイル描写がうまくいかない |
□投稿者/ つらむ (3回)-(2020/08/16(Sun) 14:17:39)
|
分類:[C#]
お世話になっております。
WPF VS2019です。
以下のように、画像をタイルのように繰り返したいです。
https://i.gyazo.com/5ce28edd88d79eb80042cdd903112255.png
試したソースは以下です。
何がうまくいかないのか、ご指導頂けると幸いです。
// 背景
{
ImageBrush imageBrush = new ImageBrush();
imageBrush.ImageSource =
new BitmapImage(new Uri("Resources/fish_mola2.png", UriKind.Relative));
// 不透明度
imageBrush.Opacity = 1;
imageBrush.TileMode = TileMode.FlipXY;
imageBrush.Viewport = new Rect
{
X = 0,
Y = 0,
Height = 10,
Width = 10,
Location = new System.Windows.Point() { X = 0, Y = 0 },
Size = new System.Windows.Size { Height = 10, Width = 10 }
};
imageBrush.Stretch = Stretch.Fill;
this.Background = imageBrush;
}
|
|