becbf3c682
- eliminati alcuni crash - in geometrie si chiude Edit dopo aver cancellato l'ultima - piccoli aggiustamenti ai tooltip.
71 lines
3.0 KiB
XML
71 lines
3.0 KiB
XML
<UniformGrid x:Class="ViewPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Rows="1">
|
|
|
|
<Button ToolTip="{Binding ZoomAllToolTip}"
|
|
Command="{Binding ZoomAllCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/ZoomAll.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromTopToolTip}"
|
|
Command="{Binding TopViewCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromTOP.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromFrontToolTip}"
|
|
Command="{Binding FrontViewCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromFRONT.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromRightToolTip}"
|
|
Command="{Binding RightViewCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromRIGHT.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromBackToolTip}"
|
|
Command="{Binding BackViewCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromBACK.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromLeftToolTip}"
|
|
Command="{Binding LeftViewCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromLEFT.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromIsoSWToolTip}"
|
|
Command="{Binding IsoViewSWCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_SW.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding LookFromIsoSEToolTip}"
|
|
Command="{Binding IsoViewSECommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/LookFromISO_SE.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding ViewFromCPlaneToolTip}"
|
|
Command="{Binding ViewFromCPlaneCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/CplaneView.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
|
|
</UniformGrid>
|