Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <!--<SnippetAllCode>--> | |
| <DockPanel | |
| Name="ParentElement" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| > | |
| <!--implicit: <DockPanel.Children>--> | |
| <ListBox DockPanel.Dock="Top"> | |
| <!--implicit: <ListBox.Items>--> | |
| <ListBoxItem> | |
| <TextBlock>Dog</TextBlock> | |
| </ListBoxItem> | |
| <ListBoxItem> | |
| <TextBlock>Cat</TextBlock> | |
| </ListBoxItem> | |
| <ListBoxItem> | |
| <TextBlock>Fish</TextBlock> | |
| </ListBoxItem> | |
| <!--implicit: </ListBox.Items>--> | |
| </ListBox> | |
| <Button Height="20" Width="100" DockPanel.Dock="Top">Buy a Pet</Button> | |
| <!--implicit: </DockPanel.Children>--> | |
| </DockPanel> | |
| <!--</SnippetAllCode>--> |