普通につくるとOKかキャンセルかどちらかなのですが、OKだけに出来るでしょうか。
http://yoichiro.cocolog-nifty.com/eclipse/2004/07/post_1.html
public class HelloWindow extends ApplicationWindow {
public HelloWindow (){
super(null);
}
protected Control createContents(Composite parent){
getShell().setText("JFace Sample");
Button b = new Button(parent, SWT.NULL);
b.setText("OK");
return b;
}
public static void main(String[] args){
HelloWindow w = new HelloWindow();
w.setBlockOnOpen(true);
w.open();
Display.getCurrent().dispose();
}
回答者 | 回答 | 受取 | ベストアンサー | 回答時間 | |
---|---|---|---|---|---|
1 | ![]() |
1回 | 0回 | 0回 | 2011-04-26 12:52:20 |
コメント(0件)