Permalink
Fetching contributors…
Cannot retrieve contributors at this time
38 lines (33 sloc) 851 Bytes
<!--<SnippetRootOnly>-->
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--</SnippetRootOnly>-->
<DockPanel>
<!--<SnippetDirtSimple>-->
<StackPanel>
<Button Content="Click Me"/>
</StackPanel>
<!--</SnippetDirtSimple>-->
<!--<SnippetExplicitDirt>-->
<StackPanel>
<StackPanel.Children>
<!--<UIElementCollection>-->
<Button>
<Button.Content>
Click Me
</Button.Content>
</Button>
<!--</UIElementCollection>-->
</StackPanel.Children>
</StackPanel>
<!--</SnippetExplicitDirt>-->
<!--<SnippetDirtSimple2>-->
<StackPanel>
<Button>Click Me</Button>
</StackPanel>
<!--</SnippetDirtSimple2>-->
</DockPanel>
<!--<SnippetRootOnly2>-->
</Page>
<!--</SnippetRootOnly2>-->