Files
EgtCAM5/ProjectPage/ShowPanel/ShowPanelView.xaml
T
Emmanuele Sassi 3a5aeedd81 EgtCAM5 :
- Separazione GridView in più pannelli.
- Cambio colori della grafica.
2016-08-30 13:47:59 +00:00

21 lines
1.3 KiB
XML

<UserControl x:Class="ShowPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Background="Transparent" Orientation="Horizontal">
<RadioButton ToolTip="{Binding RenderingWFToolTip}" Style="{StaticResource GridViewPanelRadioButton}" Command="{Binding WireframeCommand}">
<Image Source="/Resources/GridViewPanel/RenderingWF.png" Stretch="Uniform"/>
</RadioButton>
<RadioButton ToolTip="{Binding RenderingHLToolTip}" Style="{StaticResource GridViewPanelRadioButton}" Command="{Binding HiddenLineCommand}">
<Image Source="/Resources/GridViewPanel/RenderingHL.png" Stretch="Uniform"/>
</RadioButton>
<RadioButton ToolTip="{Binding RenderingSHToolTip}" Style="{StaticResource GridViewPanelRadioButton}" Command="{Binding ShadingCommand}">
<Image Source="/Resources/GridViewPanel/RenderingSH.png" Stretch="Uniform"/>
</RadioButton>
<ToggleButton ToolTip="{Binding CurveDirToolTip}" Style="{StaticResource GridViewPanelToggleButton}" IsChecked="{Binding CurveDirIsChecked}">
<Image Source="/Resources/GridViewPanel/CurveDir.png" Stretch="Uniform"/>
</ToggleButton>
</StackPanel>
</UserControl>