Files
EgtCAM5/ProjectPage/ExecutePanel/ExecutePanelView.xaml
T
Emmanuele Sassi 7e660ee9a2 EgtCAM5 :
- Aggiunti MRUFile su ExecScript e Doors.
2016-09-29 11:09:27 +00:00

17 lines
753 B
XML

<UserControl x:Class="ExecutePanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Orientation="Horizontal">
<Button Command="{Binding ExecCommand}" ToolTip="{Binding ExecToolTip}"
Style="{StaticResource GridViewPanelButton}" ContextMenuService.Placement="Bottom">
<Button.ContextMenu>
<ContextMenu ItemsSource="{Binding MruScriptNames}" ItemContainerStyle="{StaticResource MruScriptItem}">
</ContextMenu>
</Button.ContextMenu>
<Image Source="/Resources/TopCommandBar/Exec.png" Stretch="Uniform"/>
</Button>
</StackPanel>
</UserControl>