将分隔符设置为距上一个控件一定的高度

发布于 2024-12-11 10:32:52 字数 118 浏览 0 评论 0原文

我有一个垂直堆栈面板,我的最后一个控件有一些 Label,我想在最后一个控件之后的高度 60 上显示 Separator 知道如何做到这一点吗?

谢谢 。

I have a vertical stack panel , my last control there is some Label and I want on a height 60 after the last control to show Separator any idea how to do so ?

Thanks .

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

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

发布评论

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

评论(2

止于盛夏 2024-12-18 10:32:52

您的意思是您希望分隔符在最后一个控件(标签)之后 60 像素?如果是这样,您可以输入例如。在最后一个标签控件之后、Separator 之前清空

Do you mean you want your separator 60 pixels after last control (Label)? If so, you can put eg. empty <StackPanel Height="60"/> after your last label control, and before Separator.

[旋木] 2024-12-18 10:32:52

你能再解释一下你的问题吗?

您可以在堆栈面板中添加这样的分隔符

 <StackPanel Name="StackPanel1">
    <Button Height="23" Name="Button1">Button</Button>
    <Button Height="23" Name="Button2" Width="Auto">Button</Button>
    <Separator Height="5" Name="Separator1" Width="Auto" />
    <Button Height="23" Name="Button3" >Button</Button>
</StackPanel>

如上所示,您可以更改任何控件的高度

Can you explain your question a bit more?

You can add separator like this in a stackpanel

 <StackPanel Name="StackPanel1">
    <Button Height="23" Name="Button1">Button</Button>
    <Button Height="23" Name="Button2" Width="Auto">Button</Button>
    <Separator Height="5" Name="Separator1" Width="Auto" />
    <Button Height="23" Name="Button3" >Button</Button>
</StackPanel>

As shown above you can change height of any control

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