hengheng123456789

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  297 Posts :: 68 Stories :: 144 Comments :: 0 Trackbacks

常用链接

留言簿(33)

我参与的团队

搜索

  •  

积分与排名

  • 积分 - 431470
  • 排名 - 128

最新评论

阅读排行榜

评论排行榜

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 哼哼 阅读(7706) 评论(0)  编辑  收藏 所属分类: SWT