根据LiveCode中的设备屏幕大小调整数据网格内容和控件的大小

时间:2013-07-18 11:27:32

标签: livecode

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

但我能够调整数据网格行模板的内容。

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

提前致谢。

1 个答案:

答案 0 :(得分: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

处的datagrid属性