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 に答える