markus / KCOM / Resources / DecodeImageTemplate.xaml @ 4fcb686a
이력 | 보기 | 이력해설 | 다운로드 (864 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:KCOM.Controls"> |
5 |
<Style TargetType="local:ScaleDecodeImage"> |
6 |
<Setter Property="Template"> |
7 |
<Setter.Value>
|
8 |
<ControlTemplate TargetType="local:ScaleDecodeImage"> |
9 |
<Image
|
10 |
x:Name="PART_IMAGE" |
11 |
RenderOptions.BitmapScalingMode="HighQuality" |
12 |
RenderOptions.ClearTypeHint="Enabled" |
13 |
RenderOptions.EdgeMode="Unspecified" |
14 |
Source="{TemplateBinding ViewSource}" |
15 |
Stretch="Fill" /> |
16 |
</ControlTemplate>
|
17 |
</Setter.Value>
|
18 |
</Setter>
|
19 |
</Style>
|
20 |
</ResourceDictionary>
|