Files
EgtCAM5/ProjectPage/OptionPanel/DrawOptionPanel/DrawOptionPanelView.xaml
T
Emmanuele Sassi 4db56e7e09 EgtCAM5 :
- Migliorie varie.
2016-07-09 19:17:02 +00:00

19 lines
989 B
XML

<UserControl x:Class="DrawOptionPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="200">
<StackPanel Background="DarkGray">
<UniformGrid Rows="1">
<RadioButton Style="{StaticResource DrawOptionPanel_ToggleButton}" Content="DRAW" Height="30" IsChecked="{Binding DrawIsChecked}"/>
<RadioButton Style="{StaticResource DrawOptionPanel_ToggleButton}" Content="MACHINING" Height="30" IsChecked="{Binding WorkIsChecked}"/>
</UniformGrid>
<!--ContentPresenter that contains the ManageLayerExpander-->
<ContentPresenter Content="{Binding ManageLayerExpander}"/>
<!--ContentPresenter that contains the InfoExpander-->
<ContentPresenter Content="{Binding InfoExpander}"/>
<!--ContentPresenter that contains the InputExpander-->
<ContentPresenter Content="{Binding InputExpander}"/>
</StackPanel>
</UserControl>