d611f66d43
Correzioni e migliorie
19 lines
740 B
XML
19 lines
740 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"
|
|
IsEnabled="{Binding MainMenu_IsEnabled}">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<UniformGrid Rows="1">
|
|
<RadioButton Content="{Binding Supervisor_Msg}"
|
|
IsChecked="{Binding Supervisor_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<RadioButton Content="{Binding Configuration_Msg}"
|
|
IsChecked="{Binding Config_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
</UniformGrid>
|
|
|
|
</StackPanel>
|
|
|