Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要为TextArea我的 GUI 的特殊目的渲染一个精确的像素宽度。
TextArea
当我将其宽度设置为“250px”时,它显示为 256px。
有没有办法覆盖这种行为,所以我可以将它准确地渲染为 250px?
使用 时setWidth(),您实际上是在设置元素的内容宽度。
setWidth()
要获得偏移宽度,请使用UIObject#getOffsetWidth(). 这将返回包括填充和边框(但不包括边距)的宽度。
UIObject#getOffsetWidth()