XAMLで四角形を描く〜Rectangle
XAMLのサンプルソース
<Canvas
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="200" Height="200"
>
<Rectangle
Height="100" Width="100"
Stroke="Black" StrokeThickness="5" Fill="red" />
<Rectangle Height="100" Width="100"
Canvas.Left="110" Canvas.Top="0"
Stroke="blue" StrokeThickness="10" Fill="Transparent"
RadiusX="10" RadiusY="10" />
</Canvas>
プロパティ
Height | 高さ 例)Height="100" |
Width | 横幅 例)Width="100" |
Canvas.Top | 上端からxずらす 例)Canvas.Top="100" |
Canvas.Left | 左端からxずらす 例)Canvas.Left="100" |
Fill | 塗りつぶし 例)Fill="#000000" |
Stroke | 線の色 例)Stroke="#000000" |
StrokeThickness | 線の幅 例)StrokeThickness="5" |
Opacity | 透明度 |
Canvas.ZIndex | 重なりの順序 |
X1 | X座標の始点 |
X2 | Y座標の始点 |
X2 | X座標の終点 |
Y2 | Y座標の終点 |
Points | 折れ線で使用 |