Skip to content
This repository has been archived by the owner on Jun 25, 2023. It is now read-only.

Latest commit

 

History

History
32 lines (27 loc) · 867 Bytes

ProgressBar.md

File metadata and controls

32 lines (27 loc) · 867 Bytes
layout name group
control
ProgressBar
controls

Note: You can check the Avalonia docs for the ProgressBar and ProgressBar API if you need more information.

For Avalonia.FuncUI's DSL properties you can check ProgressBar.fs

The ProgressBar control allow for showing dynamic progress status.

Usage

Basic Progress Bar

ProgressBar.create [
    ProgressBar.value 50.
    ProgressBar.maximum 100.
    // Minimum default value is set to 0
]

Indeterminate Animated Progress Bar

ProgressBar.create [
    ProgressBar.isIndeterminate true
]