15 lines
818 B
XML
15 lines
818 B
XML
<EgtFloating:EgtFloatingPanel x:Class="OptionPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
|
|
TitleBarOrientation="Vertical"
|
|
Visibility="{Binding Panel_Visibility}">
|
|
|
|
<StackPanel Background="Transparent" MaxHeight="{Binding MaxHeight,RelativeSource={RelativeSource AncestorType={x:Type EgtFloating:EgtFloatingPanel}}}">
|
|
|
|
<!--ContentPresenter that contains the ModePanel-->
|
|
<ContentPresenter Content="{Binding ModePanel}"/>
|
|
</StackPanel>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|