We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02308b commit ea2dd57Copy full SHA for ea2dd57
Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Loading/LoadingCode.bind
@@ -66,7 +66,7 @@
66
<brushes:AcrylicBrush BackgroundSource="Backdrop"
67
TintColor="Black"
68
TintOpacity="@[Opacity:DoubleSlider:0.4:0.0-1.0]"
69
- BlurAmount="@[BlurAmount:DoubleSlider:8:0.0-32.0]"/>
+ BlurAmount="@[BlurAmount:DoubleSlider:8:0.0-24.0]"/>
70
</controls:Loading.Background>
71
<ContentControl x:Name="LoadingContentControl" />
72
</controls:Loading>
Microsoft.Toolkit.Uwp.SampleApp/SamplePages/Loading/LoadingPage.xaml.cs
@@ -67,7 +67,7 @@ private void Load()
private async Task ShowLoadingDialogAsync()
{
loadingControl.IsLoading = true;
- await Task.Delay(3000);
+ await Task.Delay(5000);
loadingControl.IsLoading = false;
}
73
0 commit comments