Browse Source

Merge pull request #924 in BA/design from ~PLOUGH/design:9.0 to 9.0

* commit 'd6e14d54ae4d5131009a94b14c8ef05bdcd28be9':
  REPORT-2561 大屏-数字时钟插件,属性表左移,调整
master
superman 8 years ago
parent
commit
ab5d3a38d7
  1. 8
      designer_form/src/com/fr/design/designer/properties/WidgetPropertyTable.java

8
designer_form/src/com/fr/design/designer/properties/WidgetPropertyTable.java

@ -27,6 +27,8 @@ public class WidgetPropertyTable extends AbstractPropertyTable {
private FormDesigner designer;
private static final int LEFT_COLUMN_WIDTH = 97; // "属性名"列的宽度
private static final int RIGHT_COLUMN_WIDTH = 138; // "属性值"列的宽度
public WidgetPropertyTable(FormDesigner designer) {
super();
@ -85,11 +87,13 @@ public class WidgetPropertyTable extends AbstractPropertyTable {
}
TableModel model = new BeanTableModel();
setModel(model);
this.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN);
TableColumn tc = this.getColumn(this.getColumnName(0));
tc.setPreferredWidth(LEFT_COLUMN_WIDTH);
tc.setMinWidth(LEFT_COLUMN_WIDTH);
tc.setMaxWidth(LEFT_COLUMN_WIDTH);
TableColumn tcRight = this.getColumn(this.getColumnName(1));
tcRight.setMinWidth(RIGHT_COLUMN_WIDTH);
tcRight.setMaxWidth(RIGHT_COLUMN_WIDTH);
this.repaint();
}

Loading…
Cancel
Save