repeat-x in Silverlight
This works only on 1px-Backgrounds, but they aren't used because you can set the color of your background with a setting. If you've got 80*80px, you have to relay on html and css while there's no...
View Articlerepeat-x in Silverlight
There is a much better way to do this.If you have a repeating background that is 1 pixel wide, do this:<Image Source="<repeating image source>" HorizontalAlignment="Stretch" Height="<height...
View Articlerepeat-x in Silverlight
Hello, in WPF, you can use ImageBrush.TileMode property to achieve the similar effects of repeat-x/y (this property is actually for all TileBrushes). But currently this property is not included in...
View Articlerepeat-x in Silverlight
AFAIK there is no repeat behavior in Silvelright's XAML (unlike WPF which supports it) but why not just do it in CSS for the containing DIV and make your Silverlight Host transparent? That's what I...
View Articlerepeat-x in Silverlight
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...
View Article