如何调整 GWT UIBinder 模板中 SplitLayoutPanel 拖动器的大小
我想让 SplitLayoutPanel
的拖动器变小。我可以用 CSS 样式来做到这一点吗?我尝试了padding和border,但都没有效果。
I want to make the draggers of the SplitLayoutPanel
smaller. Can I do that with CSS styling? I tried padding and border, but both have no effect.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法在 CSS 中设置拆分器大小,因为拆分器是布局结构的一部分,它在内部跟踪大小(出于同样的原因,您需要在其他布局面板上硬编码大小)。但您可以通过构造函数
SplitLayoutPanel(int splitterSize)
设置分割器大小。You can't set the splitter size in CSS because the splitter is part of the layout structure, which internally keeps track of the size (for the same reason you need to hardcode sizes on other Layout panels). But you can set the splitter size via the constructor
SplitLayoutPanel(int splitterSize)
.您可以将尺寸(以像素为单位)指定为停靠边缘元素上的属性。例如,以下设置宽度为 150px 的西边。
You can specify the size (in pixels) as an attribute on the dock edge element. For example, the following sets a western edge with a width of 150px.