java命名空间javax.swing类jfilechooser的类成员方法:
createdialog定义及介绍
本文导语:
createdialog
protected jdialog createdialog(component parent)
throws headlessexception
创建并返回包含 this 的新 jdialog,在 parent 窗体中的 parent 上居中。可重写此方法以进一步地操作对话框、禁止调整大小、设置位置等等。例...
createdialog
protected jdialog createdialog(component parent)
throws headlessexception
- 创建并返回包含
this
的新 jdialog
,在 parent
窗体中的 parent
上居中。可重写此方法以进一步地操作对话框、禁止调整大小、设置位置等等。例如:
class myfilechooser extends jfilechooser {
protected jdialog createdialog(component parent) throws headlessexception {
jdialog dialog = super.createdialog(parent);
dialog.setlocation(300, 200);
dialog.setresizable(false);
return dialog;
}
}
- 参数:
parent
- 该对话框的父组件,可以为 null
- 返回:
- 包含 this 实例的新
jdialog
- 抛出:
headlessexception
- 如果 graphicsenvironment.isheadless() 返回 true。- 从以下版本开始:
- 1.4
- 另请参见:
graphicsenvironment.isheadless()