Silverlight1.0サンプルソース集

Microsoft Silverlight1.0のサンプルソースを無料で紹介

XAMLの基礎

サンプルソース

リンク

XAMLで円を描く〜Ellipse

XAMLのサンプルソース

   

<Canvas

xmlns="http://schemas.microsoft.com/client/2007"

xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

Width="200" Height="200"

>

<Ellipse

Height="100" Width="100"

Stroke="Black" StrokeThickness="5" Fill="red" />

</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重なりの順序
X1X座標の始点
X2Y座標の始点
X2X座標の終点
Y2Y座標の終点
Points折れ線で使用