用eclipse作一java小程序,要实现打印的功能,即用一打印按钮,单击一下,弹出那个打印框,求大神给源代码?

我是初学者,望给出注释,谢谢.
2024-11-27 09:54:37
推荐回答(2个)
回答1:

  import org.eclipse.swt.*;
  import org.eclipse.swt.events.SelectionAdapter;
  import org.eclipse.swt.events.SelectionEvent;
  import org.eclipse.swt.widgets.*;
  
  public class testSWT {
  
  public static void main(String[] args) {
  Display display = new Display();// 创建一个display对象。
  final Shell shell = new Shell(display);// shell是程序的主窗体
  shell.setLayout(null); // 设置shell的布局方式
  shell.setText("按钮示例"); // 设置主窗体的标题
  Button bt1 = new Button(shell, SWT.NULL); // 创建默认按钮
  bt1.setText("我是按钮"); // 设置按钮上的文字
  bt1.setBounds(10, 10, 75, 30); // 设置按钮显示位置及宽度、高度
  bt1.addSelectionListener(new SelectionAdapter() {
  public void widgetSelected(SelectionEvent e) {
  MessageBox dialog = new MessageBox(shell, SWT.OK
  | SWT.ICON_INFORMATION);
  dialog.setText("组件选择事件");
  dialog.setMessage("你好!");
  dialog.open();
  }
  });
  shell.pack(); // 自动调整主窗体的大小
  shell.open(); // 打开主窗体
  while (!shell.isDisposed()) { // 如果主窗体没有关闭
  if (!display.readAndDispatch()) { // 如果display不忙
  display.sleep(); // 休眠
  }
  }
  display.dispose(); // 销毁display
  }
  }

回答2:

是老师布置的作业吧,自己写