bca8754b82
- Migliorie varie.
18 lines
859 B
XML
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>
|