Permalink
Fetching contributors…
Cannot retrieve contributors at this time
22 lines (21 sloc) 661 Bytes
<Page x:Class="Foo.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Page1"
>
<StackPanel Name="root">
<!--<SnippetMostBasicProperty>-->
<Button Background="Red" Content="Button!"/>
<!--</SnippetMostBasicProperty>-->
<!--<SnippetPESyntaxProperty>-->
<Button Content="Button!">
<Button.Background>
<ImageBrush ImageSource="wavy.jpg"/>
</Button.Background>
</Button>
<!--</SnippetPESyntaxProperty>-->
<!--<SnippetPropertyMixedDeclProc>-->
<Button Name="anotherButton" Width="200"/>
<!--</SnippetPropertyMixedDeclProc>-->
</StackPanel>
</Page>