mirror of https://github.com/buggins/dlangui.git
update ddoc
This commit is contained in:
parent
5ffe5db1e9
commit
6c8785e9dd
|
@ -11,6 +11,15 @@ Synopsis:
|
||||||
----
|
----
|
||||||
import dlangui.widgets.progressbar;
|
import dlangui.widgets.progressbar;
|
||||||
|
|
||||||
|
auto pb = new ProgressBarWidget();
|
||||||
|
// set progress
|
||||||
|
pb.progress = 300; // 0 .. 1000
|
||||||
|
// set animation interval
|
||||||
|
pb.animationInterval = 50; // 50 milliseconds
|
||||||
|
|
||||||
|
// for indeterminate state: set progress to PROGRESS_INDETERMINATE (-1)
|
||||||
|
pb.progress = PROGRESS_INDETERMINATE;
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
Copyright: Vadim Lopatin, 2016
|
Copyright: Vadim Lopatin, 2016
|
||||||
|
|
Loading…
Reference in New Issue