21 lines
632 B
XML
21 lines
632 B
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>
|
|
<Image Source="/Resources/ProjManager/newfile.png"/>
|
|
</Button>
|
|
|
|
<Button>
|
|
<Image Source="/Resources/ProjManager/save.png"/>
|
|
</Button>
|
|
|
|
<!--apertura file-->
|
|
<Button Command="{Binding OpenFileCmd}">
|
|
<Image Source="/Resources/ProjManager/folder.png"/>
|
|
</Button>
|
|
|
|
</StackPanel>
|