27 lines
985 B
XML
27 lines
985 B
XML
<WrapPanel x:Class="ProjManagerButtonV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Orientation="Horizontal">
|
|
|
|
<Button ToolTip="{Binding NewFile_Msg}"
|
|
Command="{Binding NewFileCmd}"
|
|
Style="{StaticResource Proj_Btn}">
|
|
<Image Source="/Resources/ProjManager/newfile.png"
|
|
Style="{StaticResource Proj_Img}"/>
|
|
</Button>
|
|
|
|
<Button ToolTip="{Binding OpenFile_Msg}"
|
|
Command="{Binding OpenFileCmd}"
|
|
Style="{StaticResource Proj_Btn}">
|
|
<Image Source="/Resources/ProjManager/folder.png"
|
|
Style="{StaticResource Proj_Img}"/>
|
|
</Button>
|
|
|
|
<Button ToolTip="{Binding Save_Msg}"
|
|
Command="{Binding SaveFileCmd}"
|
|
Style="{StaticResource Proj_Btn}">
|
|
<Image Source="/Resources/ProjManager/save.png"
|
|
Style="{StaticResource Proj_Img}"/>
|
|
</Button>
|
|
</WrapPanel>
|