Permalink
Fetching contributors…
Cannot retrieve contributors at this time
42 lines (41 sloc) 1.39 KB
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
<StackPanel>
<!--<SnippetDockAP>-->
<DockPanel>
<Button DockPanel.Dock="Left" Width="100" Height="20">I am on the left</Button>
<Button DockPanel.Dock="Right" Width="100" Height="20">I am on the right</Button>
</DockPanel>
<!--</SnippetDockAP>-->
<!--<SnippetTypeNameProp>-->
<Button Background="Blue">Background</Button>
<Button Button.Background="Blue">Button.Background</Button>
<Button Control.Background="Blue">Control.Background</Button>
<!--</SnippetTypeNameProp>-->
<!--<SnippetTypeNameBadProp>-->
<!--<Button Label.Background="Blue">Does not work</Button> -->
<!--</SnippetTypeNameBadProp>-->
<!--<SnippetGoofyPE>-->
<Button>Control.Background PE
<Control.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="Yellow" Offset="0.0" />
<GradientStop Color="LimeGreen" Offset="1.0" />
</LinearGradientBrush>
</Control.Background>
</Button>
<!--</SnippetGoofyPE>-->
<!--<SnippetGoofyTCPE>-->
<Button>Hallo!
<Button.Language>
de-DE
</Button.Language>
</Button>
<!--</SnippetGoofyTCPE>-->
<!--<SnippetGoofyTCPE2>-->
<Button Language="de-DE">Hallo!</Button>
<!--</SnippetGoofyTCPE2>-->
</StackPanel>
</Page>