I am thinking to create some backgrounds under WPF UserControl and keep all images as embedded resources.
And what I guess is to minimize images sizes and keep 1 pixels width images and just repeat it SOMEHOW like we have it under CSS.
background-image: url(http://s11.postimage.org/ufpdknvjz/left.png);
background-repeat: repeat-x;
Is there any approach to do it with XAML?
Thank you!
Guessing you want to use an
ImageBrushand specify the properTileMode. Not sure if you can do just X though…