A CheckBox with a skew transformation : CheckBox « Windows Presentation Foundation « C# / C Sharp






A CheckBox with a skew transformation

A CheckBox with a skew transformation
    

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
        xmlns:sys="clr-namespace:System;assembly=mscorlib" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
  <Grid>

    <Button Content ="Click Me!" Grid.Row="0" Grid.Column="1" Width="95" Height="40">
      <Button.RenderTransform>
        <SkewTransform AngleX ="20" AngleY ="20"/>
      </Button.RenderTransform>
    </Button>

  </Grid>

</Window>

   
    
    
    
  








Related examples in the same category

1.Three-State CheckBoxThree-State CheckBox
2.Add CheckBox to StackPanelAdd CheckBox to StackPanel
3.Customized CheckBoxCustomized CheckBox
4.CheckBox StyleCheckBox Style
5.CheckBox checked event listenerCheckBox checked event listener
6.Handles CheckBox Indeterminate events when a CheckBox changes to a indeterminate state.Handles CheckBox Indeterminate events when a CheckBox changes to a indeterminate state.
7.Handle CheckBox Unchecked eventsHandle CheckBox Unchecked events
8.Handle CheckBox checked events
9.Use Linq to get checked CheckBoxUse Linq to get checked CheckBox
10.Check the CheckBox based on key pressed statesCheck the CheckBox based on key pressed states
11.CheckBox ListCheckBox List