18 lines
374 B
C#
18 lines
374 B
C#
|
Polygon with Fill
|
||
|
|
||
|
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
x:Class="Microsoft.Samples.Graphics.RectangleExample"
|
||
|
WindowTitle="Rectangle">
|
||
|
<Canvas>
|
||
|
|
||
|
<Polygon
|
||
|
Points="9,120 50,10 120,120"
|
||
|
Fill="#FFCCFF" />
|
||
|
|
||
|
|
||
|
|
||
|
</Canvas>
|
||
|
</Page>
|
||
|
|