0532c0c486
- gestione ribs completata - nuove funzionalita' introdotte su tabella TFS - correzioni e migliorie varie
30 lines
1.5 KiB
XML
30 lines
1.5 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="ShowPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
|
|
IsTopDockable="True" IsBottomDockable="False" IsLeftDockable="False"
|
|
IsRightDockable="False" Style="{StaticResource ToolBar_EgtFloatingPanel}">
|
|
|
|
<RadioButton ToolTip="{Binding RenderingWFToolTip}"
|
|
Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding WireframeIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/RenderingWF.png" Stretch="Uniform"/>
|
|
</RadioButton>
|
|
<RadioButton ToolTip="{Binding RenderingHLToolTip}"
|
|
Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding HiddenLineIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/RenderingHL.png" Stretch="Uniform"/>
|
|
</RadioButton>
|
|
<RadioButton ToolTip="{Binding RenderingSHToolTip}"
|
|
Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding ShadingIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/RenderingSH.png" Stretch="Uniform"/>
|
|
</RadioButton>
|
|
<ToggleButton ToolTip="{Binding CurveDirToolTip}"
|
|
Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding CurveDirIsChecked}">
|
|
<Image Source="/Resources/ShowPanel/CurveDir.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|