Files
EgtCAM5/TopCommandBar/TopCommandBarView.xaml
T
Emmanuele Sassi bca8754b82 EgtCAM5 :
- Migliorie varie.
2016-07-09 10:44:36 +00:00

18 lines
859 B
XML

<UserControl x:Class="TopCommandBarView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--Barra superiore dei comandi-->
<StackPanel Orientation="Horizontal" Height="30">
<Button Content="New" Command="{Binding NewCommand}"/>
<Button Content="Open" Command="{Binding OpenCommand}"/>
<Button Content="Save" Command="{Binding SaveCommand}"/>
<Button Content="Save as..." Command="{Binding SaveAsCommand}"/>
<Button Content="Insert" Command="{Binding InsertCommand}"/>
<Button Content="Import" Command="{Binding ImportCommand}"/>
<Button Content="Export" Command="{Binding ExportCommand}"/>
<Button Content="Execute" Command="{Binding ExecCommand}"/>
</StackPanel>
</UserControl>