dffec5fc1d
- Migliorie varie.
36 lines
1.5 KiB
XML
36 lines
1.5 KiB
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 Command="{Binding NewCommand}">
|
|
<Image Source="/Resources/TopCommandBar/New.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding OpenCommand}">
|
|
<Image Source="/Resources/TopCommandBar/Open.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding SaveCommand}">
|
|
<Image Source="/Resources/TopCommandBar/Save.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding SaveAsCommand}">
|
|
<Image Source="/Resources/TopCommandBar/SaveAs.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding InsertCommand}">
|
|
<Image Source="/Resources/TopCommandBar/Insert.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ImportCommand}">
|
|
<Image Source="/Resources/TopCommandBar/Import.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ExportCommand}">
|
|
<Image Source="/Resources/TopCommandBar/Export.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Command="{Binding ExecCommand}">
|
|
<Image Source="/Resources/TopCommandBar/Exec.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button Content="DOORS" Command="{Binding DoorsCommand}"/>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|