-
Notifications
You must be signed in to change notification settings - Fork 3
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.
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}" />