ebec1bb583
- Aggiunti filtri su BTLPart DoAll - Correzione su selezione pareti - Aggiunta visibilita' bottone supervisore - Correzione su ShowAll parts - Correzione disattivazione assemblato durante import BTL - Correzione selezione pezzi in finestre pareti - Correzione tipo di progetto in warehouse
34 lines
1.5 KiB
XML
34 lines
1.5 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}"
|
|
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>
|
|
|