Files
EgtCAM5/ProjectPage/DoorsPanel/DoorsPanelView.xaml
T
Emmanuele Sassi 172b45cf35 EgtCAM5 :
- Aggiunte moltefunzionalità di gestione tabelle per Doors.
- Migliorata la Behaviour di Scroll per ListBox e aggiunta quella per DataGrid
2016-10-14 18:51:15 +00:00

21 lines
1009 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"/>
<Button Command="{Binding MTableDbCommand}" ToolTip="{Binding MTableToolTip}"
Style="{StaticResource GridViewPanelButton}" Width="65" Content="MTABLE"/>
</StackPanel>
</UserControl>