Files
icarus/Icarus/ShowPanel/ShowPanelV.xaml
Emmanuele Sassi 34c4d1e644 - aggiunti bottonmi con cambio icona quando premuti
- corretto errore in visualizzazione posizione cursore
- modificati colori griglia TFSEditor
- cambiata grafica slider
- migliorati stati bottoni
2023-01-17 10:43:34 +01:00

34 lines
2.1 KiB
XML

<UniformGrid x:Class="ShowPanelV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Icarus"
Rows="1">
<local:CheckedImageRadioButton ToolTip="{Binding RenderingWFToolTip}"
IsChecked="{Binding WireframeIsChecked}"
ImageSource="/Resources/ShowPanel/RenderingWF.png"
CheckedImageSource="/Resources/ShowPanel/RenderingWF_White.png"
Margin="2.5,0,2.5,0"
Style="{StaticResource BottomPanel_ToggleButton}"/>
<local:CheckedImageRadioButton ToolTip="{Binding RenderingHLToolTip}"
IsChecked="{Binding HiddenLineIsChecked}"
ImageSource="/Resources/ShowPanel/RenderingHL.png"
CheckedImageSource="/Resources/ShowPanel/RenderingHL_White.png"
Margin="2.5,0,2.5,0"
Style="{StaticResource BottomPanel_ToggleButton}"/>
<local:CheckedImageRadioButton ToolTip="{Binding RenderingSHToolTip}"
IsChecked="{Binding ShadingIsChecked}"
ImageSource="/Resources/ShowPanel/RenderingSH.png"
CheckedImageSource="/Resources/ShowPanel/RenderingSH_White.png"
Margin="2.5,0,2.5,0"
Style="{StaticResource BottomPanel_ToggleButton}"/>
<local:CheckedImageToggleButton ToolTip="{Binding CurveDirToolTip}"
IsChecked="{Binding CurveDirIsChecked}"
ImageSource="/Resources/ShowPanel/CurveDir.png"
CheckedImageSource="/Resources/ShowPanel/CurveDir_White.png"
Margin="2.5,0,2.5,0"
Style="{StaticResource BottomPanel_ToggleButton}"/>
</UniformGrid>