markus / ZoomAndPan / Themes / Generic.xaml @ 43e1d368
이력 | 보기 | 이력해설 | 다운로드 (984 Bytes)
1 |
<ResourceDictionary
|
---|---|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:local="clr-namespace:ZoomAndPan"> |
5 |
<Style TargetType="{x:Type local:ZoomAndPanControl}"> |
6 |
<Setter Property="Template"> |
7 |
<Setter.Value>
|
8 |
<ControlTemplate TargetType="{x:Type local:ZoomAndPanControl}"> |
9 |
<Border
|
10 |
Background="{TemplateBinding Background}" |
11 |
BorderBrush="{TemplateBinding BorderBrush}" |
12 |
BorderThickness="{TemplateBinding BorderThickness}"> |
13 |
<ContentPresenter
|
14 |
x:Name="PART_Content" |
15 |
HorizontalAlignment="Left" |
16 |
VerticalAlignment="Top" /> |
17 |
</Border>
|
18 |
</ControlTemplate>
|
19 |
</Setter.Value>
|
20 |
</Setter>
|
21 |
</Style>
|
22 |
</ResourceDictionary>
|