Files
egtstone3d/ProjManager/ProjManagerV.xaml
T

31 lines
1.0 KiB
XML

<StackPanel x:Class="ProjManagerV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
Orientation="Horizontal">
<Button Style="{DynamicResource ProjManager_Btn}">
<Image Source="/Resources/ProjManager/newfile.png"/>
</Button>
<Button Style="{DynamicResource ProjManager_Btn}">
<Image Source="/Resources/ProjManager/save.png"/>
</Button>
<Button Style="{DynamicResource ProjManager_Btn}">
<Image Source="/Resources/ProjManager/saveas.png"/>
</Button>
<!--apertura file-->
<Button Command="{Binding OpenFileCmd}"
Style="{DynamicResource ProjManager_Btn}">
<Image Source="/Resources/ProjManager/folder.png"/>
</Button>
<Button Command="{Binding OptionsCommand}"
Style="{DynamicResource ProjManager_Btn}">
<Image Source="/Resources/ProjManager/settings.png"/>
</Button>
</StackPanel>