Files
EgtCAM5/ProjectPage/GunStockPanel/GunStockPanelView.xaml
T
Dario Sassi 22c13fad6e EgtCAM5 1.6v4 :
- aggiunta gestione GunStock
- correzione gestione utensili per calcolo automatico.
2016-10-08 18:09:07 +00:00

16 lines
705 B
XML

<UserControl x:Class="GunStockPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Background="Transparent" Orientation="Horizontal">
<Button Command="{Binding GunStockCommand}" Style="{StaticResource GridViewPanelButton}"
Width="70" Content="GUNSTOCK" ContextMenuService.Placement="Bottom">
<Button.ContextMenu>
<ContextMenu ItemsSource="{Binding MruGunStockNames}" ItemContainerStyle="{StaticResource MruGunStockItem}">
</ContextMenu>
</Button.ContextMenu>
</Button>
</StackPanel>
</UserControl>