WPF/図形の描画
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(WPF/図形の描画);
*目次 [#sa44a2f4]
#contents
*参考情報 [#ub333a87]
-[[<howto>Add decorations to WPF shapes</howto> - Essenti...
-[[silverlight - Add textblock to ellipse in WPF - Stack ...
-[[Centering Text within a WPF Shape using a Canvas - Pau...
-[[how to add shapes to canvas:http://social.msdn.microso...
-[[Graph#:http://graphsharp.codeplex.com/]]…WPFで作られた...
-[[Linking WPF Objects together with a simple line (ala f...
-[[WPF Diagram Designer Part 1]]
-[[WPF Diagram Designer - Part 2 - CodeProject:http://www...
-[[WPF Diagram Designer - Part 3 - CodeProject:http://www...
-[[WPF Diagram Designer - Part 4 - CodeProject:http://www...
-[[Petzold Book Blog - Lines with Arrows:http://charlespe...
*基本 [#m30aa0f0]
-Sharpクラスのサブクラスを使う。Rectangle / Ellipse / Lin...
-GridやStackPanelの通常のコントロールに追加することもでき...
<Ellipse Canvas.Left="100" Canvas.Top="50" />
-CanvasをリサイズするときはViewboxに入れる。
#pre{{
<Viewbox>
<Canvas>
</Canvas>
</Viewbox>
}}
**Ellipse [#q2b8d603]
-固定サイズで描画
<Ellipse Fill="Yellow" Stroke="Blue" Height="50" Width="...
**Rectangle [#i500233b]
-RadiusX, RadiusYを指定すると角丸になる。
<Rectangle Fill="Yellow" Stroke="Blue" Height="50" Width...
**Polyline [#l913cec7]
-折れ線の描画。コーナーを角丸にする方法はない(Borderコン...
-[[WPF rounded corners polygon - CodeProject:http://www.c...
終了行:
&tag(WPF/図形の描画);
*目次 [#sa44a2f4]
#contents
*参考情報 [#ub333a87]
-[[<howto>Add decorations to WPF shapes</howto> - Essenti...
-[[silverlight - Add textblock to ellipse in WPF - Stack ...
-[[Centering Text within a WPF Shape using a Canvas - Pau...
-[[how to add shapes to canvas:http://social.msdn.microso...
-[[Graph#:http://graphsharp.codeplex.com/]]…WPFで作られた...
-[[Linking WPF Objects together with a simple line (ala f...
-[[WPF Diagram Designer Part 1]]
-[[WPF Diagram Designer - Part 2 - CodeProject:http://www...
-[[WPF Diagram Designer - Part 3 - CodeProject:http://www...
-[[WPF Diagram Designer - Part 4 - CodeProject:http://www...
-[[Petzold Book Blog - Lines with Arrows:http://charlespe...
*基本 [#m30aa0f0]
-Sharpクラスのサブクラスを使う。Rectangle / Ellipse / Lin...
-GridやStackPanelの通常のコントロールに追加することもでき...
<Ellipse Canvas.Left="100" Canvas.Top="50" />
-CanvasをリサイズするときはViewboxに入れる。
#pre{{
<Viewbox>
<Canvas>
</Canvas>
</Viewbox>
}}
**Ellipse [#q2b8d603]
-固定サイズで描画
<Ellipse Fill="Yellow" Stroke="Blue" Height="50" Width="...
**Rectangle [#i500233b]
-RadiusX, RadiusYを指定すると角丸になる。
<Rectangle Fill="Yellow" Stroke="Blue" Height="50" Width...
**Polyline [#l913cec7]
-折れ線の描画。コーナーを角丸にする方法はない(Borderコン...
-[[WPF rounded corners polygon - CodeProject:http://www.c...
ページ名: