0bc8e470b9
- creazione di assemblati
25 lines
1.3 KiB
XML
25 lines
1.3 KiB
XML
<UserControl x:Class="ShowPanelV"
|
|
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}"
|
|
IsChecked="{Binding WireframeIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/RenderingWF.png" Stretch="Uniform"/>
|
|
</RadioButton>
|
|
<RadioButton ToolTip="{Binding RenderingHLToolTip}" Style="{StaticResource GridViewPanelRadioButton}"
|
|
IsChecked="{Binding HiddenLineIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/RenderingHL.png" Stretch="Uniform"/>
|
|
</RadioButton>
|
|
<RadioButton ToolTip="{Binding RenderingSHToolTip}" Style="{StaticResource GridViewPanelRadioButton}"
|
|
IsChecked="{Binding ShadingIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/RenderingSH.png" Stretch="Uniform"/>
|
|
</RadioButton>
|
|
<ToggleButton ToolTip="{Binding CurveDirToolTip}" Style="{StaticResource GridViewPanelToggleButton}"
|
|
IsChecked="{Binding CurveDirIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/CurveDir.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|