Files
egtbeamwall/EgtBEAMWALL.ViewerOptimizer/MainMenu/MainMenuV.xaml
T
RenzoL a9b25e1a30 - aggiunto pulsante di Invio Feedback al MainMenu
- adattata la funzione ExportProject di ProjManager per funzionare nell'Invio Feedback
2022-01-18 11:29:41 +01:00

33 lines
1.4 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}"/>
<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>