指定下面的属性
1. TileMode="Tile"
2. ViewportUnits="Absolute"
3. Viewport="left, top, width, height"<-- 用具体的数字表示 每次 tile 时图像的左上, 宽高
For Example:
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<StackPanel.Background>
<ImageBrush ImageSource="bk.jpg" TileMode="Tile" Stretch="UniformToFill"
ViewportUnits="Absolute" Viewport="0,0,80,80"/>
</StackPanel.Background>
</StackPanel>
保存为 xaml 文档, 在 ie 中打开即可看效果. (基於 xbap 安全约定, 案例中 bk.jpg 和 xaml 在同一目录中)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)