Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/MainMenu/MainMenuV.xaml
T
Samuele E. Locatelli f812ff66c2 initial commit
2021-03-04 19:48:48 +01:00

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>