25 lines
916 B
XML
25 lines
916 B
XML
<Grid x:Class="GridViewPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtStone3D="clr-namespace:EgtStone3D"
|
|
Margin="0,0,10,5">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Button ToolTip="{Binding ZoomAllToolTip}"
|
|
Command="{Binding ZoomAllCommand}"
|
|
Style="{StaticResource Proj_Btn}">
|
|
<Image Source="/Resources/GridViewPanel/ZoomAll.png"
|
|
Style="{StaticResource Proj_Img}"/>
|
|
</Button>
|
|
<Button Grid.Row="1"
|
|
ToolTip="{Binding StatusGridText}"
|
|
Command="{Binding StatusGridCommand}"
|
|
Style="{StaticResource Grid_Btn}">
|
|
<EgtStone3D:SVGV FileSource="{Binding FileGridOnOffSVG, UpdateSourceTrigger=PropertyChanged}"/>
|
|
</Button>
|
|
|
|
</Grid>
|