Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 22nd, 2012  |  syntax: XML  |  size: 1.20 KB  |  hits: 30  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <Style x:Key="TUCaNListBoxStyle" TargetType="ListBox">
  2.             <Setter Property="Background" Value="Transparent"/>
  3.             <Setter Property="Foreground" Value="{StaticResource PhoneForegroundBrush}"/>
  4.             <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Disabled"/>
  5.             <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"/>
  6.             <Setter Property="BorderThickness" Value="0"/>
  7.             <Setter Property="BorderBrush" Value="Transparent"/>
  8.             <Setter Property="Padding" Value="0"/>
  9.             <Setter Property="Template">
  10.                 <Setter.Value>
  11.                     <ControlTemplate TargetType="ListBox">
  12.                         <ScrollViewer x:Name="ScrollViewer" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Foreground="{TemplateBinding Foreground}" Padding="{TemplateBinding Padding}" Style="{StaticResource ScrollViewerStyle1}" >
  13.  
  14.                             <ItemsPresenter/>
  15.                         </ScrollViewer>
  16.                     </ControlTemplate>
  17.                 </Setter.Value>
  18.             </Setter>
  19.         </Style>