Hello,
I'm trying to do some UI things with Silverlight. I can't find the equivalents of CSS repeat-x in Silverlight.I have one small image (29x17). The page width is 600. So, I want to show this image repeatedly on x-axis.
In HTML and CSS, I can use like that.
CSS : background: transparent url(images/header_bg.gif) repeat-x left top;
<div>
</div>
I want to do this in XAML. Any idea would be appreciated. Thanks in advance.