Files
EgtCAM5/ProjectPage/InstrumentPanel/InstrumentPanelView.xaml
T
Emmanuele Sassi 7cde115879 EgtCAM5 :
- Disattivato Analizza e tutti i bottoni nella TopCommandBar tranne i salva quando in modalità lavora.
- Attivata lettura stato show e curvedir all'avvio del programma.
- Aggiunta messagebox che mostra gli errori nel caso l'apertura di un DDF ne abbia generati.
- Rimossi panel doors e exec in modalità lavora.
- Correzzione errori Db utensili e lavorazioni
2016-09-20 15:26:21 +00:00

15 lines
827 B
XML

<UserControl x:Class="InstrumentPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Background="Transparent" Orientation="Horizontal">
<ToggleButton ToolTip="{Binding AnalyzeToolTip}" Style="{StaticResource GridViewPanelToggleButton}" IsChecked="{Binding AnalyzeIsChecked}" IsEnabled="{Binding AnalyzeIsEnabled}">
<Image Source="/Resources/GridViewPanel/Analyze.png" Stretch="Uniform"/>
</ToggleButton>
<ToggleButton ToolTip="{Binding GetDistToolTip}" Style="{StaticResource GridViewPanelToggleButton}" IsChecked="{Binding GetDistIsChecked}">
<Image Source="/Resources/GridViewPanel/GetDist.png" Stretch="Uniform"/>
</ToggleButton>
</StackPanel>
</UserControl>