68 lines
3.0 KiB
XML
68 lines
3.0 KiB
XML
<StackPanel x:Class="ProjManagerV"
|
|
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"
|
|
Orientation="Horizontal"
|
|
IsEnabled="{Binding ProjManager_IsEnabled}">
|
|
|
|
<!--Barra superiore dei comandi-->
|
|
<Button Command="{Binding New_Command}"
|
|
ToolTip="{Binding NewToolTip}"
|
|
Style="{StaticResource ToolBar_Button}">
|
|
<Image Source="/Resources/ProjectManager/New.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding OpenCommand}"
|
|
ToolTip="{Binding OpenToolTip}"
|
|
ContextMenuService.Placement="Bottom"
|
|
Tag="{Binding}"
|
|
Style="{StaticResource ToolBar_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 SaveCommand}"
|
|
ToolTip="{Binding SaveToolTip}"
|
|
Style="{StaticResource ToolBar_Button}">
|
|
<Image Source="/Resources/ProjectManager/Save.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding SaveAsCommand}"
|
|
ToolTip="{Binding SaveAsToolTip}"
|
|
Style="{StaticResource ToolBar_Button}">
|
|
<Image Source="/Resources/ProjectManager/SaveAs.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ImportCommand}"
|
|
ToolTip="{Binding ImportToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
IsEnabled="{Binding DrawIsChecked}">
|
|
<Image Source="/Resources/ProjectManager/Import.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<!--<Button Command="{Binding ExportCommand}" ToolTip="{Binding ExportToolTip}"
|
|
IsEnabled="{Binding DrawIsChecked}">
|
|
<Image Source="/Resources/ProjectManager/Export.png" Stretch="Uniform"/>
|
|
</Button>-->
|
|
<Button Command="{Binding OptionsCommand}"
|
|
Width="30"
|
|
ToolTip="{Binding OptionsToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
IsEnabled="{Binding SaveIsEnabled}">
|
|
<Image Source="/Resources/ProjectManager/Options.png" Height="22" />
|
|
</Button>
|
|
<Button Command="{Binding SendFeedbackCommand}"
|
|
Width="30"
|
|
ToolTip="{Binding SendFeedbackToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
IsEnabled="{Binding SaveIsEnabled}">
|
|
<Image Source="/Resources/ProjectManager/Send.png" Height="22" />
|
|
</Button>
|
|
|
|
</StackPanel>
|