import org.eclipse.jface.viewers.ColumnWeightData;
import org.eclipse.jface.viewers.TableLayout;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ViewForm;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Table;
import org.eclipse.swt.widgets.TableColumn;
public class FilePanel extends Composite {
public FilePanel(Composite composite, int style) {
super(composite, style);
this.setLayout(new FillLayout());
ViewForm form=new ViewForm(composite, style);
//composite.setCapture(true);
//composite = new Composite(form, SWT.NONE);
final TableViewer tableViewer = new TableViewer(composite, SWT.BORDER);
Table table = tableViewer.getTable();
table.setLinesVisible(true);
table.setHeaderVisible(true);
TableLayout layout = new TableLayout();// 用於表格的布局
table.setLayout(layout);
layout.addColumnData(new ColumnWeightData(60));
TableColumn col1 = new TableColumn(table, SWT.NONE);
col1.setText("文件全名");
layout.addColumnData(new ColumnWeightData(60));
TableColumn col2 = new TableColumn(table, SWT.NONE);
col2.setText("最終結果");
layout.addColumnData(new ColumnWeightData(60));
TableColumn col3 = new TableColumn(table, SWT.NONE);
col3.setText("重送次數");
}
public static void main(String[] args) {
Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
shell.setSize(600, 400);
new FilePanel(shell, SWT.NONE);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
}
}
可以讓控件橫向擴展,不要留白
如果我的回答幫助了您,或者您希望得到小喵進一步的回答,請先采納這個回答。
如果您覺得小喵的回答在所有回答中不是最好的,也請您在采納別的大牛哥哥的答案的同時,點一個贊給我吧,您對小喵的鼓勵是我前進的動力。
方法是光標移動到右邊,點擊采納即可。這個步驟輕而易舉,絕不耽誤您寶貴的時間。
采納我的回答還有如下好處:
(1)得到進一步深入的回答
(2)同時增加您的經驗和人品,事實證明,采納率高的用戶,專家們更願意回答你的提問,得到答案的速度和效率也更高。
(3)毫不耗費您的積分
可憐的小喵妹妹拜托您啦。祝您工作順利~心想事成!