aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Touch/Controls/TouchVirtualizedContentControl.xaml
blob: 7cd72cc40aee5854d08395d76a8fc89b8a6a329f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:local="clr-namespace:Tango.Touch.Controls">

    <Style TargetType="{x:Type local:TouchVirtualizedContentControl}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type local:TouchVirtualizedContentControl}">
                    <ContentPresenter x:Name="PART_innerBorder" Visibility="Hidden" Content="{TemplateBinding Content}"></ContentPresenter>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
    
</ResourceDictionary>