Topic: 一个swt中感觉比较难的问题,谢谢

  Print this page

1.一个swt中感觉比较难的问题,谢谢 Copy to clipboard
Posted by: xzc
Posted on: 2004-07-12 20:28

Table table1 = new Table(shell, SWT.BORDER);
table1.setBounds(10,10,270,60);

TableColumn name = new TableColumn(table1,SWT.LEFT);
name.setText("Name");
name.setWidth(50);

TableColumn age = new TableColumn(table1,SWT.RIGHT);
age.setText("Age");
age.setWidth(30);

TableColumn address = new TableColumn(table1,SWT.LEFT);
address.setText("Address");
address.setWidth(200);

上面的代码生成三个TableColumn 的实例name,age,address。
我想问可以用一个数组一次生成么?
就是TableColumn[] tc = new TableColumn[]()?,new后面的这部分如何写呢?希望还是以TableColumn(table1,SWT.LEFT)类似形式为构造函数。

似乎TableColumn[] tc = new TableColumn[3](table1,SWT.LEFT)是错误的,如何实现数组形式的构造函数?要自己重新实现么?
谢谢。

2.Re:一个swt中感觉比较难的问题,谢谢 [Re: xzc] Copy to clipboard
Posted by: Halley
Posted on: 2004-07-16 16:29

当然可以

3.Re:一个swt中感觉比较难的问题,谢谢 [Re: xzc] Copy to clipboard
Posted by: yipsilon
Posted on: 2004-07-21 12:09


TableColumn[] tc = new TableColumn[3];
for(int i = 0;i < 3;i++){
tc[i] = new TableColumn(table1,SWT.LEFT);
}


应该是这样的.


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923