4db56e7e09
- Migliorie varie.
19 lines
989 B
XML
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>
|