d24641a0b2
- Migliorie varie.
17 lines
599 B
XML
17 lines
599 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" />
|
|
<Button Content="Save" />
|
|
<Button Content="Save as..." />
|
|
<Button Content="Import" />
|
|
<Button Content="Export" />
|
|
<Button Content="Execute" />
|
|
</StackPanel>
|
|
|
|
</UserControl>
|