将分隔符设置为距上一个控件一定的高度
我有一个垂直堆栈面板,我的最后一个控件有一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的意思是您希望分隔符在最后一个控件(标签)之后 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 beforeSeparator
.你能再解释一下你的问题吗?
您可以在堆栈面板中添加这样的分隔符
如上所示,您可以更改任何控件的高度
Can you explain your question a bit more?
You can add separator like this in a stackpanel
As shown above you can change height of any control