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.
我有一个 C1FlexGrid 控件,其中填充了许多行和列。
我怎么能问控件它的“全尺寸”是什么(以像素为单位)?
全尺寸我的意思是,我应该设置它的 .Size 属性值, 所以它的所有单元格都将被显示,而不需要用户任何滚动条/滚动。
好的,我不知道他们是否为它创建了一个特殊属性, 但我设法通过询问.Bottom最后一行的控件和最后一列的控件来做到这一点.Right:
.Bottom
.Right
C1FG.Height =C1FG.Rows[C1FG.Rows.Count-1].Bottom+2; C1FG.Width =C1FG.Cols[C1FG.Cols.Count-1].Right +2;
它有效。