I'm trying to set an image background to repeat along my entire grid. It's a small image, with a bit of random noise in to give it texture.
Currently this is what I'm doing:
<Grid.Background>
<ImageBrush ImageSource="Images/mainBg.png" Stretch="UniformToFill" />
</Grid.Background>
But this blows up the image and makes the noise look terrible. I'd like to have the image repeat itself on the X and Y axis to fill the space it can.
Is this possible?