34c4d1e644
- corretto errore in visualizzazione posizione cursore - modificati colori griglia TFSEditor - cambiata grafica slider - migliorati stati bottoni
64 lines
2.7 KiB
XML
64 lines
2.7 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 ViewToCPlaneToolTip}"
|
|
Command="{Binding ViewToCPlaneCommand}"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource BottomPanel_Button}">
|
|
<Image Source="/Resources/ViewPanel/CplaneView.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
|
|
</UniformGrid>
|