0

我有一个无边界的表格,当我尝试将其他表格拖到它上面时,它们只会在它下面而不是在它上面,为什么它会这样做?

 WindowStartupLocation="CenterScreen" HorizontalAlignment="Left" VerticalAlignment="Top" MouseDown="Window_MouseDown" Topmost="True" x:Name="win" WindowStyle="None" Height="{x:Static SystemParameters.PrimaryScreenHeight}"  Width="{x:Static SystemParameters.PrimaryScreenWidth}" ResizeMode="CanResizeWithGrip" AllowsTransparency="True" Visibility="Visible" SnapsToDevicePixels="True" IsHitTestVisible="True" Loaded="win_Loaded">
<WindowChrome.WindowChrome>
    <WindowChrome 
    CaptionHeight="0"
    ResizeBorderThickness="5" />
</WindowChrome.WindowChrome>
4

1 回答 1

0

你设置Topmost="True"。只需删除它。

于 2016-04-19T09:26:35.883 回答