Files
EgtDOORCreator/SceneManager/ShowPanel/ShowPanelView.xaml
T
Nicola Pievani f365dee1c7 EgtDOORCreator 1.8d1 :
- Asterisco in fase di modifica;
- salvataggio in caso di cambio porta solo se presente asterisco;
- asterisco in fase di creazione nuova porta.
2017-04-06 18:17:33 +00:00

25 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}"
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>