WPF DevExpress DockLayoutManager 布局问题

发布于 2024-09-14 02:09:39 字数 385 浏览 6 评论 0原文

我在 UserControl 中使用 DevExpress 的 DockLayoutManager。

在 DockLayoutManager 中,我使用 LayoutGroup,在 LayoutGroup 中,我有两个 LayoutPanel。两个 LayoutPanel 随意堆叠。我希望第二个 LayoutPanel 具有固定高度,停靠在 UserControl 的左下角,并且我希望第一个 LayoutPanel 具有动态高度,填充 UserControl 的剩余高度,并且我希望它停靠在在用户控件的左上角。我似乎无法让它工作 - 而且 - 似乎没有任何属性指定 LayoutPanel 的停靠位置(即底部、顶部、左侧等)。

我对这些控件很陌生,所以任何指导将不胜感激。

谢谢。

克里斯

I am using DevExpress' DockLayoutManager in a UserControl.

Within the DockLayoutManager, I use LayoutGroup, and within LayoutGroup, I have two LayoutPanels. The two LayoutPanels are stacked vartically. I want the second LayoutPanel to be a fixed height, docked at the bottom left of the UserControl, and I want the first LayoutPanel to have a dynamic height, filling up the remainder of the height of the UserControl, and I want it the be docked in the upper left corner of the UserControl. I can't seem to get this to work - and - there doesn't seem be any property that specifies where to dock a LayoutPanel (i.e. bottom,top,left etc.).

I am new to these controls, so any guidance would be appreciated.

Thanks.

Chris

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

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

发布评论

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

评论(1

神回复 2024-09-21 02:09:39

这可以使用以下 xaml 来完成:

<dxd:LayoutGroup x:Name="LayoutRoot">
    <dxd:LayoutGroup Orientation="Vertical" Width="150">
        <dxd:LayoutPanel Caption="First" Height="*"/>
        <dxd:LayoutPanel Caption="Second" Height="100"/>
    </dxd:LayoutGroup>
    <dxd:LayoutGroup Width="*"/>
</dxd:LayoutGroup>

This can be done using the following xaml:

<dxd:LayoutGroup x:Name="LayoutRoot">
    <dxd:LayoutGroup Orientation="Vertical" Width="150">
        <dxd:LayoutPanel Caption="First" Height="*"/>
        <dxd:LayoutPanel Caption="Second" Height="100"/>
    </dxd:LayoutGroup>
    <dxd:LayoutGroup Width="*"/>
</dxd:LayoutGroup>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文