您的位置:首页 > 其它

使用图像绘制

2013-08-13 23:16 204 查看
<Page x:Class="使用图像绘制.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
WindowTitle="使用图像绘制">
<StackPanel Orientation="Horizontal">
<Ellipse Width="120" Height="90" Stroke="Blue" StrokeThickness="3" Margin="10">
<Ellipse.Fill>
<ImageBrush ImageSource="Hydrangeas.jpg"/>
</Ellipse.Fill>
</Ellipse>
<Rectangle Width="100" Height="85" Stroke="Red" StrokeThickness="3" Margin="10">
<Rectangle.Fill>
<ImageBrush ImageSource="131.ico"/>
</Rectangle.Fill>
</Rectangle>
<Rectangle Width="100" Height="85" Stroke="Green" StrokeThickness="3" Margin="10">
<Rectangle.Fill>
<ImageBrush ImageSource="256.ico" Viewport="0,0,0.25,0.25" ViewportUnits="RelativeToBoundingBox" TileMode="Tile"/>
</Rectangle.Fill>
</Rectangle>
</StackPanel>
</Page>

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: