EgtCAM5 :
- Migliorie varie.
This commit is contained in:
@@ -4,14 +4,30 @@
|
||||
|
||||
<!--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}"/>
|
||||
<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>
|
||||
</StackPanel>
|
||||
|
||||
</UserControl>
|
||||
|
||||
Reference in New Issue
Block a user