模仿WizardDialog外观的TitleAreaDialog子类

来源:互联网 发布:淘宝网男士小包 编辑:程序博客网 时间:2024/05/16 11:00
public class TestTitleAreaDialog extends TitleAreaDialog implements test {public TestTitleAreaDialog(Shell parentShell) {super(parentShell);}/*  * 窗口可改变大小,有最大化最小化按钮 */@Overrideprotected boolean isResizable() {return true;}public static void main(String[] args) {TestTitleAreaDialog testTitleAreaDialog = new TestTitleAreaDialog(new Shell());testTitleAreaDialog.setBlockOnOpen(true);testTitleAreaDialog.open();}@Overrideprotected Control createDialogArea(Composite parent) {Composite mainComposite = (Composite) super.createDialogArea(parent);// 创建详细控件...// Build the separator lineLabel separator = new Label(mainComposite, SWT.HORIZONTAL| SWT.SEPARATOR);separator.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));return parent;}}


 

0 0