f903f80433
-cambio versione -introdotto finestre EgtMessageBox e EgtManageDialog al posto di quello di Windows -spostato immagni in dizionario -aggiunto messaggi
27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<StackPanel x:Class="ShowPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Style="{StaticResource BTLPartManager_StackPanel}">
|
|
|
|
<RadioButton ToolTip="{Binding RenderingWFToolTip}"
|
|
IsChecked="{Binding WireframeIsChecked}"
|
|
Style="{StaticResource ToolBar_ToggleButton}">
|
|
<Image Source="{StaticResource RenderingWF_Image}"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</RadioButton>
|
|
<RadioButton ToolTip="{Binding RenderingHLToolTip}"
|
|
IsChecked="{Binding HiddenLineIsChecked}"
|
|
Style="{StaticResource ToolBar_ToggleButton}">
|
|
<Image Source="{StaticResource RenderingHL_Image}"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</RadioButton>
|
|
<RadioButton ToolTip="{Binding RenderingSHToolTip}"
|
|
IsChecked="{Binding ShadingIsChecked}"
|
|
Style="{StaticResource ToolBar_ToggleButton}">
|
|
<Image Source="{StaticResource RenderingSH_Image}"
|
|
Style="{StaticResource BTLDataWnd_Image}"/>
|
|
</RadioButton>
|
|
|
|
</StackPanel>
|
|
|