Top / SWT / 別ウィンドウを開く

SubForm?のスニペット

public class SubForm {
	private Shell subShell;

	public Shell open(Shell shell) {
		subShell = new Shell(shell);
		subShell.setText("subShell");
		// DESIGNER: Add controls before this line.
		subShell.open();
		return subShell;
	}
}

上のSubForm?を呼ぶ方のスニペット

button = new Button(shell, SWT.NONE);
button.addSelectionListener(new SelectionAdapter() {
	public void widgetSelected(SelectionEvent e) {
		SubForm subform = new SubForm();
		subform.open(shell);
	}
});

この記事は

選択肢 投票
おもしろかった 0  
そうでもない 0  

Top / SWT / 別ウィンドウを開く

現在のアクセス:14032


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS