2d665a396a
- Migliorie varie.
16 lines
766 B
XML
16 lines
766 B
XML
<UserControl x:Class="OptionPanelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="250"
|
|
xmlns:interactivity="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity">
|
|
|
|
<StackPanel Background="Transparent">
|
|
<!--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>
|