69e010e147
- Modifiche lettura variabili NUM per input ed output - introdotte differenze grafiche tra NUM e TPA - Introdotto controllo chiave su utilizzo Db non locale - Correzione su reset dei CALC quando ci sono modifiche - Blocco comandi su MachGroup in produzione - Introdotto bottone supervisore in View/Optim per aprirlo o richiamarlo in primo piano
25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<StackPanel x:Class="MainMenuV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Orientation="Horizontal"
|
|
IsEnabled="{Binding MainMenu_IsEnabled}">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<UniformGrid Rows="1">
|
|
<RadioButton Content="{Binding Viewer_Msg}"
|
|
IsChecked="{Binding View_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<RadioButton Content="{Binding Optimizer_Msg}"
|
|
IsChecked="{Binding Machining_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<Button Content="{Binding Supervisor_Msg}"
|
|
Command="{Binding Supervisor_Command}"
|
|
Style="{StaticResource MainMenu_Button}"/>
|
|
<RadioButton Content="{Binding Configuration_Msg}"
|
|
IsChecked="{Binding Config_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
</UniformGrid>
|
|
|
|
</StackPanel>
|
|
|