Files
EgtCAM5/TopCommandBar/TopCommandBarView.xaml
T
Emmanuele Sassi d24641a0b2 EgtCAM5 :
- Migliorie varie.
2016-07-08 13:19:54 +00:00

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>