diff --git a/Bin/net40/SunnyUI.Demo.exe b/Bin/net40/SunnyUI.Demo.exe index c2ed3404..51e2e86a 100644 Binary files a/Bin/net40/SunnyUI.Demo.exe and b/Bin/net40/SunnyUI.Demo.exe differ diff --git a/SunnyUI.Demo/Forms/FDialogs.cs b/SunnyUI.Demo/Forms/FDialogs.cs index 056888e2..7f993f67 100644 --- a/SunnyUI.Demo/Forms/FDialogs.cs +++ b/SunnyUI.Demo/Forms/FDialogs.cs @@ -197,10 +197,17 @@ namespace Sunny.UI.Demo private void uiSymbolButton11_Click(object sender, EventArgs e) { - ShowWaitForm(); - Thread.Sleep(3000); - SetWaitFormDescription(UILocalize.SystemProcessing + "50%"); - Thread.Sleep(3000); + ShowWaitForm("准备开始..."); + Thread.Sleep(1000); + SetWaitFormDescription(UILocalize.SystemProcessing + "20%"); + Thread.Sleep(1000); + SetWaitFormDescription(UILocalize.SystemProcessing + "40%"); + Thread.Sleep(1000); + SetWaitFormDescription(UILocalize.SystemProcessing + "60%"); + Thread.Sleep(1000); + SetWaitFormDescription(UILocalize.SystemProcessing + "80%"); + Thread.Sleep(1000); + SetWaitFormDescription(UILocalize.SystemProcessing + "100%"); HideWaitForm(); }