24 lines
981 B
XML
24 lines
981 B
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">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<UniformGrid Rows="1">
|
|
<RadioButton Content="Visualizzatore"
|
|
IsChecked="{Binding View_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<RadioButton Content="Ottimizzatore"
|
|
IsChecked="{Binding Machining_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<!--<RadioButton Content="Supervisore"
|
|
IsChecked="{Binding Supervisor_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>-->
|
|
<RadioButton Content="Configurazione"
|
|
IsChecked="{Binding Config_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
</UniformGrid>
|
|
|
|
</StackPanel>
|
|
|