256ff11cf4
- Eliminato TabControl. - Create e gestite finestre con i Db. - Spostati bottoni modalità (Draw e Machining) nella barra superiore. - Miglioramenti vari.
20 lines
1.1 KiB
XML
20 lines
1.1 KiB
XML
<UserControl x:Class="OptionPanelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="200"
|
|
xmlns:interactivity="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity">
|
|
|
|
<StackPanel Background="Transparent">
|
|
<!--<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,Mode=OneWay}"/>
|
|
<!--ContentPresenter that contains the InfoExpander-->
|
|
<ContentPresenter Content="{Binding InfoExpander}"/>
|
|
<!--ContentPresenter that contains the InputExpander-->
|
|
<ContentPresenter Content="{Binding InputExpander}"/>
|
|
</StackPanel>
|
|
|
|
</UserControl>
|