1

我正在开发一个应该能够根据设备屏幕大小调整自身大小的应用程序。我设法用 altMobileResizer 做到了这一点。

但我无法调整数据网格行模板的内容。

有没有办法可以调整数据网格内容的大小?

提前致谢。

4

1 回答 1

0

您可以使用 dgColumnWidth 属性。喜欢:

set the dgColumnWidth["column1"] of group "myDataGrid" to tWidth

您可能还需要其他属性,您可以通过 dgProp 属性设置其中的大部分。喜欢:

set the dgProp["Row Height"] of group "myDataGrid" to 75
set the dgProp["text Size"] of group "myDataGrid" to 22
set the dgProp["header text Size"] of group "myDataGrid" to 22
set the dgProp["header height"] of group "myDataGrid" to 35

查看http://lessons.runrev.com/s/lessons/m/datagrid/l/7343-data-grid-properties上的数据网格属性

于 2013-07-19T06:02:55.653 回答