Files
EgtCAM5/ProjectPage/DbPanel/DbPanelView.xaml
T
Emmanuele Sassi 256ff11cf4 EgtCAM5 :
- Eliminato TabControl.
- Create e gestite finestre con i Db.
- Spostati bottoni modalità (Draw e Machining) nella barra superiore.
- Miglioramenti vari.
2016-08-31 15:19:20 +00:00

13 lines
605 B
XML

<UserControl x:Class="DbPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Orientation="Horizontal">
<Button Command="{Binding ToolDbCommand}" ToolTip="{Binding ToolDbToolTip}"
Style="{StaticResource GridViewPanelButton}" Width="55" Content="ToolDb"/>
<Button Command="{Binding MachDbCommand}" ToolTip="{Binding MachDbToolTip}"
Style="{StaticResource GridViewPanelButton}" Width="55" Content="MachDb"/>
</StackPanel>
</UserControl>