From c1f497a7c606c0d460ba2b542440f208cf03b369 Mon Sep 17 00:00:00 2001 From: Ralfs Garkaklis Date: Mon, 27 Apr 2020 12:36:34 +0300 Subject: [PATCH] add docs for progress indicator --- docs/index.html.ejs | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/docs/index.html.ejs b/docs/index.html.ejs index 9568d56..5739bf4 100644 --- a/docs/index.html.ejs +++ b/docs/index.html.ejs @@ -43,6 +43,7 @@
  • TreeView
  • Tabs
  • TableView
  • +
  • Progress Indicator
  • Issues, Contributing, etc.
  • @@ -878,7 +879,6 @@
    -

    TableView

    @@ -965,6 +965,35 @@ }); `) %> +

    +
    + +
    +

    Progress Indicator

    +
    +
    + A ProgressIndicator is a control, also known as a progress bar control, you can use to show the percentage of completion of a lengthy operation. + +
    + — Microsoft Windows User Experience p. 142 +
    +
    + +

    + The ProgressIndicator component supports two types of bars. Both are deterministic, which means that you should give it a value parameter. Indeterministic progress bars are not supported, yet. +

    + +

    + There are two types of progress bars: continuous and block. The continuous doesn't require any further configuration. The block bar does require a class of progress-bar-block. +

    + + <%- example(` + + `) %> + + <%- example(` + + `) %>