651c1e32af
-aggiunto finestra OnlyProd_QParamListV, OnlyProdAxesPanelV, OnlyProdCalcPanelV, OnlyProdPartInRawPartListV, OnlyProdRawPartListV, OnlyProdLeftPanelV, OnlyProdProjectV, OnlyProdShowPanelV, OnlyProdSupervisorManagerV, OnlyProdViewPanelV, OnlyProdMainMenuV
31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<StackPanel x:Class="OnlyProdMainMenuV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Orientation="Horizontal"
|
|
IsEnabled="{Binding MainMenu_IsEnabled}"
|
|
DataContext="{StaticResource MainMenuVM}">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<UniformGrid Rows="1">
|
|
<RadioButton Content="{Binding OnlyProdPage_Msg}"
|
|
IsChecked="{Binding OnlyProdPage_IsChecked}"
|
|
Visibility="{Binding OnlyProdPage_Visibility}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<Button Content="{Binding Supervisor_Msg}"
|
|
Command="{Binding Supervisor_Command}"
|
|
Visibility="{Binding Supervisor_Visibility}"
|
|
Style="{StaticResource MainMenu_Button}"/>
|
|
<RadioButton Content="{Binding Configuration_Msg}"
|
|
IsChecked="{Binding Config_IsChecked}"
|
|
Style="{StaticResource MainMenu_ToggleButton}"/>
|
|
<Button Command="{Binding SendFeedbackCommand}"
|
|
ToolTip="{Binding SendFeedbackToolTip}"
|
|
Style="{StaticResource MainMenu_Button}"
|
|
IsEnabled="{Binding SendFeedbackIsEnabled}"
|
|
HorizontalAlignment="Left"
|
|
Width="40">
|
|
<Image Source="/Resources/MainMenu/Send.png" Stretch="Uniform"/>
|
|
</Button>
|
|
</UniformGrid>
|
|
</StackPanel>
|