Advertisement
Guest User

Untitled

a guest
Aug 12th, 2011
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.96 KB | None | 0 0
  1. ...
  2.   <Application.Resources>
  3. <Style x:Key="mainFrameStyle" TargetType="phone:PhoneApplicationFrame">
  4.       <Setter Property="Template">
  5.         <Setter.Value>
  6.           <ControlTemplate TargetType="phone:PhoneApplicationFrame">
  7.             <Border x:Name="ClientArea"
  8.                         BorderBrush="{TemplateBinding BorderBrush}"
  9.                         BorderThickness="{TemplateBinding BorderThickness}"
  10.                         Background="{TemplateBinding Background}"
  11.                         HorizontalAlignment="{TemplateBinding HorizontalAlignment}"
  12.                         VerticalAlignment="{TemplateBinding VerticalAlignment}">
  13.               <Grid>...
  14.                 <Grid x:Name="audioPanel" Grid.RowSpan="2" VerticalAlignment="Bottom">
  15.                     .....
  16.                 </Grid>
  17.               </Grid>
  18.             </Border>
  19.           </ControlTemplate>
  20.         </Setter.Value>
  21.       </Setter>
  22.     </Style>
  23. ...
  24.   </Application.Resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement