如何让唯一的 DockPanel 子元素停靠在顶部

发布于 2024-07-16 03:31:20 字数 1031 浏览 10 评论 0原文

下面我在菜单上说“DockPanel.Top”,但它停靠在中间。 (?)

如果我从菜单中取出高度属性,它会停靠在顶部,但高度约为 200 像素。 (?)

我认为这就是 LastChildFill 的用途。

如何让 DockPanel 的这个子元素停靠在顶部,而停靠面板中没有其他项目?

<Window x:Class="TestContainer1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="480" Width="600" Loaded="Window_Loaded">

    <DockPanel HorizontalAlignment="Stretch" 
               Margin="0,0,0,0" 
               Width="Auto" 
               LastChildFill="True">

        <Menu x:Name="panelMenuTop" 
              Width="Auto" 
              Height="25" 
              DockPanel.Dock="Top">

            <MenuItem Header="File">
                <MenuItem Header="Close" 
                          Click="CloseApplication_Click"/>
            </MenuItem>
        </Menu>

    </DockPanel>
</Window>

Below I say "DockPanel.Top" on Menu but it docks in the middle. (?)

If I take the Height attribute out of Menu it docks on top but is about 200px high. (?)

I thought that was what LastChildFill was for.

How can I get this child element of DockPanel to dock on the top with no other items in the dockpanel?

<Window x:Class="TestContainer1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="480" Width="600" Loaded="Window_Loaded">

    <DockPanel HorizontalAlignment="Stretch" 
               Margin="0,0,0,0" 
               Width="Auto" 
               LastChildFill="True">

        <Menu x:Name="panelMenuTop" 
              Width="Auto" 
              Height="25" 
              DockPanel.Dock="Top">

            <MenuItem Header="File">
                <MenuItem Header="Close" 
                          Click="CloseApplication_Click"/>
            </MenuItem>
        </Menu>

    </DockPanel>
</Window>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友欢 2024-07-23 03:31:20

您的菜单填满了整个区域,因此它看起来居中。 您可以给菜单一个 VerticalAlignment="Top" 或给 DockPanel 更多的子元素,正如 Henk 所说。

Your menu is filling up the entire area so it appears centered. You can just give the Menu a VerticalAlignment="Top" or give the DockPanel some more children as Henk said.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文