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.
我需要找出 DataGrid 的高度,以便明确设置它。我可以找到所有数据行的高度:
for (int i = 0; i < getRowCount(); i++) { height += getRowElement(i).getOffsetHeight(); }
但我如何找到标题的高度?如果所有标题都放在一行中,我知道它的高度,但在某些情况下,标题可能会占用多行。