Advertisement
Guest User

Untitled

a guest
Jul 12th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.58 KB | None | 0 0
  1.     <Grid>
  2.         <Grid.Resources>
  3.             <Style TargetType="ToggleButton" x:Key="MenuButton" BasedOn="{StaticResource {x:Type ToggleButton}}">
  4.                 <Setter Property="Width" Value="30"/>
  5.                 <Setter Property="Height" Value="30"/>
  6.             </Style>
  7.         </Grid.Resources>
  8.         <StackPanel Orientation="Vertical" Width="30">
  9.             <RadioButton Style="{StaticResource MenuButton}"/>
  10.             <RadioButton Style="{StaticResource MenuButton}"/>
  11.             <RadioButton Style="{StaticResource MenuButton}"/>
  12.         </StackPanel>
  13.     </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement