如何调整 GWT UIBinder 模板中 SplitLayoutPanel 拖动器的大小

发布于 2024-11-27 04:14:15 字数 93 浏览 1 评论 0原文

我想让 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 技术交流群。

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

发布评论

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

评论(2

赴月观长安 2024-12-04 04:14:15

您无法在 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).

喵星人汪星人 2024-12-04 04:14:15

您可以将尺寸(以像素为单位)指定为停靠边缘元素上的属性。例如,以下设置宽度为 150px 的西边。

<g:SplitLayoutPanel>
   <g:west size="150">
     <!--your west edge elements -->
   </g:west>
   <g:center>
     <!--your center elements -->
   </g:west>
</g:SplitLayoutPanel>  

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.

<g:SplitLayoutPanel>
   <g:west size="150">
     <!--your west edge elements -->
   </g:west>
   <g:center>
     <!--your center elements -->
   </g:west>
</g:SplitLayoutPanel>  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文