SWT/Jface Jface中的ProgressIndicator控件

原创-转载请说明。

ProgressIndicator 可能大家了解的少,我简单写了一个例子,大家参考下吧?

例子都是在本机测试过可以完整运行的。

 

/**
 * @Title: ProgressBarExample.java
 * @Description: TODO
 * @author zouxs
 * @date 2012-9-24
 */
import org.eclipse.jface.dialogs.ProgressIndicator;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.FormLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.ProgressBar;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;

public class ProgressBarExample {
 private Text text;
 private ProgressBar progressBar;
 private int max;
 private int i;
 private int Value;
 private int value;

 public void ProgessBarExample() throws InterruptedException {
  final Display display = Display.getDefault();
  final Shell shell = new Shell(SWT.MIN | SWT.CLOSE);
  shell.setText("正在下載");
  shell.setSize(500, 200);
  shell.setLayout(new FillLayout());

  final ProgressIndicator progressIndicator = new ProgressIndicator(shell);
  progressIndicator.beginTask(100);
  Runnable Run = new Runnable() {
   public void run() {
    for (int i = 0; i < 100; i++) {
     try {
      // 让线程睡眠0.1秒
      Thread.sleep(100);
     } catch (InterruptedException e) {
      e.printStackTrace();
     }
     // 让UI线程更新滚动条

     display.asyncExec(new Runnable() {
      public void run() {
       progressIndicator.worked(1);
       if (progressIndicator.isDisposed())
        return;
      }
     });
    }
   }
  };
  new Thread(Run).start();

  shell.open();
  shell.layout();
  while (!shell.isDisposed()) {
   if (!display.readAndDispatch())
    display.sleep();
  }
 }

 public static void main(String args[]) throws InterruptedException {
  ProgressBarExample pe = new ProgressBarExample();
  pe.ProgessBarExample();
 }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值