RyLiveTools/Source/Content/MainContent.xaml

17 lines
883 B
Plaintext
Raw Permalink Normal View History

<Border hc:ScrollViewer.IsInertiaEnabled="True"
x:Class="LiveTools.Content.MainContent"
Background="{DynamicResource RegionBrush}"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:hc="https://handyorg.github.io/handycontrol"
Margin="16,16,0,16"
CornerRadius="10"
Effect="{StaticResource EffectShadow4}">
<hc:SimplePanel>
<Border Name="BorderRootEffect" Background="{DynamicResource RegionBrush}" CornerRadius="10" Effect="{StaticResource EffectShadow4}" Margin="16" Visibility="Collapsed"/>
<Border Name="BorderRoot" Style="{StaticResource BorderClip}" Margin="16">
<ContentPresenter Name="PresenterMain" Margin="0,0,0,10" Content="{Binding SubContent}"/>
</Border>
</hc:SimplePanel>
</Border>