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