重新对齐 Eclipse Draw2D 标签中的文本
我正在使用 Draw2D 标签(带文本的图形)构建基于 RCP 的应用程序。当我的图形编辑器重新调整标签大小时,文本保留在其初始位置。无论如何,是否可以根据标签的新约束重新定位文本?
I am building an RCP-based application with Draw2D Labels (Figures with text). When my graphical editor re-sizes the label, the text stays in it's initial position. Is there anyway to have the text reposition based on the new constraints of the label?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,您只需要使用 setConstriants(IFigure Parent, 矩形边界) 方法来设置位于父图窗顶部的标签的边界。
It turns out you just need to use the setConstriants(IFigure parent, Rectangle bounds) method to set the bounds of the label that is residing on top of the parent figure.