속성값에 값을 주는것 풀어서 할수 있다.
태그를 엘리먼트명.속성명이다.
Content 가 없는 속성들은 태그를 바로 닫아준다.
<Polygon xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Points="144 48, 200 222, 53 114, 235 114, 88 222"
Stroke="Blue"
StrokeThickness="5">
<Polygon.Fill>
<RadialGradientBrush>
<GradientStop Offset="0" Color="Blue" />
<GradientStop Offset="1" Color="Red" />
</RadialGradientBrush>
</Polygon.Fill>
</Polygon>
'C# > WPF' 카테고리의 다른 글
WPF에서 실행파일이 있는 경로 (0) | 2012.04.19 |
---|---|
Content 에 URI 로 이미지 넣기 (0) | 2012.04.18 |
다른 스레드가 이 개체를 소유하고 있어 호출한 스레드가 해당 개체에 액세스할 수 없습니다. (0) | 2012.04.18 |
WPF 다국어 지원 (0) | 2012.04.17 |