hengheng123456789

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  297 Posts :: 68 Stories :: 144 Comments :: 0 Trackbacks
1、显示一个简单的保存对话框。
 public static void main (String [] args) {
  Display display = new Display ();
  Shell shell = new Shell (display);
  shell.open ();
  FileDialog dialog = new FileDialog (shell, SWT.SAVE);
  dialog.setFilterNames (new String [] {"Batch Files", "All Files (*.*)"});
  dialog.setFilterExtensions (new String [] {"*.bat", "*.*"}); //Windows wild cards
  dialog.setFilterPath ("c:\\"); //Windows path
  dialog.setFileName ("fred.bat");
  System.out.println ("Save to: " + dialog.open ()); //打开对话框
  while (!shell.isDisposed ()) {
   if (!display.readAndDispatch ()) display.sleep ();
  }
  display.dispose ();
 }
posted on 2006-11-07 15:11 哼哼 阅读(7678) 评论(0)  编辑  收藏 所属分类: SWT

只有注册用户登录后才能发表评论。


网站导航: