Files
EgtCAM5/ProjectPage/DbPanel/DbPanelView.xaml
T
Emmanuele Sassi a312eef399 EgtCAM5 :
- Aggiunta possibilità di getire progressbar e output message presenti nella StatusBar da LUA.
- Inizio scrittura della struttura per MTables.
- Aggiunta la possibilità di aggiungere nuovi gruppi di lavorazione.
- Gestita uscita da NewMachiningCmd(in OperationList) con Esc.
2016-10-07 10:14:14 +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>