651c1e32af
-aggiunto finestra OnlyProd_QParamListV, OnlyProdAxesPanelV, OnlyProdCalcPanelV, OnlyProdPartInRawPartListV, OnlyProdRawPartListV, OnlyProdLeftPanelV, OnlyProdProjectV, OnlyProdShowPanelV, OnlyProdSupervisorManagerV, OnlyProdViewPanelV, OnlyProdMainMenuV
36 lines
1.8 KiB
XML
36 lines
1.8 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="OnlyProdSupervisorManagerV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
|
|
IsTopDockable="True" IsBottomDockable="False" IsLeftDockable="False"
|
|
IsRightDockable="False"
|
|
IsEnabled="{Binding SupervisorManager_IsEnabled}"
|
|
Style="{StaticResource ToolBar_EgtFloatingPanel_OnlyProd}">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<Button Command="{Binding OpenCommand}"
|
|
ToolTip="{Binding OpenToolTip}"
|
|
ContextMenuService.Placement="Bottom"
|
|
Tag="{Binding}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Button.ContextMenu>
|
|
<ContextMenu ItemsSource="{Binding MruFileNames}">
|
|
<ContextMenu.Resources>
|
|
<Style TargetType="{x:Type MenuItem}">
|
|
<Setter Property="Command"
|
|
Value="{Binding PlacementTarget.Tag.OpenMruFileCommand, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=ContextMenu}}" />
|
|
<Setter Property="CommandParameter" Value="{Binding}" />
|
|
</Style>
|
|
</ContextMenu.Resources>
|
|
</ContextMenu>
|
|
</Button.ContextMenu>
|
|
<Image Source="/Resources/ProjectManager/Open.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding GoToProd_Command}"
|
|
ToolTip="{Binding GoToProd_ToolTip}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ProjectManager/GoToProd.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|