43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<UserControl x:Class="SceneButtonV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<DockPanel>
|
|
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top">
|
|
<ListView ItemsSource="{Binding TopListBtn}">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate x:Name="SingleLineDataTemplate">
|
|
<StackPanel Orientation="Horizontal" Height="44">
|
|
<Button Content="{Binding Name}" VerticalAlignment="Center"
|
|
Command="{Binding CmdBtn}"/>
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Horizontal" DockPanel.Dock="Bottom">
|
|
<Button Content="BOTTOM BUTTON" Height="50" Width="50"/>
|
|
<Button Content="BOTTOM BUTTON" Height="50" Width="50"/>
|
|
<Button Content="BOTTOM BUTTON" Height="50" Width="50"/>
|
|
<Button Content="BOTTOM BUTTON" Height="50" Width="50"/>
|
|
<Button Content="BOTTOM BUTTON" Height="50" Width="50"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Vertical" DockPanel.Dock="Right">
|
|
<Button Content="RIGHT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="RIGHT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="RIGHT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="RIGHT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="RIGHT BUTTON" Height="50" Width="50"/>
|
|
</StackPanel>
|
|
<StackPanel Orientation="Vertical" DockPanel.Dock="Left">
|
|
<Button Content="LEFT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="LEFT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="LEFT BUTTON" Height="50" Width="50"/>
|
|
<Button Content="LEFT BUTTON" Height="50" Width="50"/>
|
|
</StackPanel>
|
|
|
|
<Canvas Width="50" Height="50" Background="Transparent"/>
|
|
</DockPanel>
|
|
|
|
</UserControl>
|