ProgressBar Example
import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.ProgressBar; import org.eclipse.swt.widgets.Shell; public class ProgressBarExample { Display d; Shell s; ProgressBarExample() { d = new Display(); s = new Shell(d); s.setSize(250, 250); s.setText("A ProgressBar Example"); final ProgressBar pb = new ProgressBar(s, SWT.HORIZONTAL); pb.setMinimum(0); pb.setMaximum(100); pb.setSelection(50); pb.setBounds(10, 10, 200, 20); s.open(); while (!s.isDisposed()) { if (!d.readAndDispatch()) d.sleep(); } d.dispose(); } public static void main() { new ProgressBarExample(); } }
1. | A progress bar dialog | ![]() | |
2. | Update a SWT progress bar (from another thread) | ||
3. | Update a progress bar (from the UI thread) | ||
4. | Count Numbers | ||
5. | ProgressBar Examples | ||
6. | Demonstrates ProgressBar |