FuncUI
GitHub Repository
  • Getting Started
  • View Basics
    • Creating views
    • Lifetime
    • Attributes
    • How to create bindings
  • Components
    • Component basics
    • Component lifetime
    • Hooks
  • Common Questions
  • Controls
    • Button
    • Border
    • Calendar
    • CalendarDatePicker
    • CheckBox
    • DatePicker
    • DockPanel
    • Expander
    • ListBox
    • Menu
    • NativeMenu
    • NumericUpDown
    • ProgressBar
    • RadioButton
    • RepeatButton
    • Slider
    • StackPanel
    • Tabs
    • TextBlock
    • TextBox
    • TimePicker
    • ToggleButton
    • ToggleSwitch
Powered by GitBook
On this page
  1. Controls

ProgressBar

Last updated 2 years ago

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

For Avalonia.FuncUI's DSL properties you can check

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
]
ProgressBar
ProgressBar API
ProgressBar.fs