| |
17. 104. 3. Customizing the Directory Selection Dialog: set title and message |
|
- Call setText(), passing the desired text, to change what's displayed in the title bar.
- Call setMessage(), passing your custom message, to change the message text.
|
import org.eclipse.swt.widgets.DirectoryDialog;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class DirectoryDialogTextMessage {
public static void main(String[] args) {
Display display = new Display();
final Shell shell = new Shell(display);
DirectoryDialog dlg = new DirectoryDialog(shell);
dlg.setText("My Text");
dlg.setMessage("My Message");
String selectedDirectory = dlg.open();
System.out.println(selectedDirectory);
display.dispose();
}
}
|
|
17. 104. 目录对话框 | | 17. 104. 1. | 建立对话和检索所选目录 | | | | 17. 104. 2. | 设置过滤器路径 | | | | 17. 104. 3. | Customizing the Directory Selection Dialog: set title and message | | |
|