Skip to content

SaveView

Vetle444 edited this page Aug 14, 2023 · 2 revisions

SaveView is used when something is currently saving. Usually consumers replaces the content of the whole page to only display the SaveView. SaveView uses FilledCheckBox to notify users when the saving is processing and when it is completed.

Usage

In this example the SaveView will start the saving animation and display the SavingText when the IsSaving property is true. When the boolean transforms to false, the SavingCompletedText will be displayed and the FilledCheckBox will be filled up.

   <dui:SaveView SavingText="Saving..."
                 SavingCompletedText="Saved!"
                 IsSaving="{Binding IsSaving}" />
Clone this wiki locally