7e660ee9a2
- Aggiunti MRUFile su ExecScript e Doors.
19 lines
839 B
XML
19 lines
839 B
XML
<UserControl x:Class="DoorsPanelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<StackPanel Background="Transparent" Orientation="Horizontal">
|
|
<Button Command="{Binding DoorsCommand}" Style="{StaticResource GridViewPanelButton}"
|
|
Width="55" Content="DOORS" ContextMenuService.Placement="Bottom">
|
|
<Button.ContextMenu>
|
|
<ContextMenu ItemsSource="{Binding MruDoorNames}" ItemContainerStyle="{StaticResource MruDoorItem}">
|
|
</ContextMenu>
|
|
</Button.ContextMenu>
|
|
</Button>
|
|
<Button Command="{Binding DMachCommand}" Style="{StaticResource GridViewPanelButton}"
|
|
Width="55" Content="DMACH"/>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|