Catel.Services.PleaseWaitService.Show C# (CSharp) Метод

Show() публичный Метод

Shows the please wait window with the specified status text.
When this method is used, the M:Catel.Services.IPleaseWaitService.Hide method must be called to hide the window again.
public Show ( string status = "" ) : void
status string The status. When the string is null or empty, the default please wait text will be used.
Результат void
        public void Show(string status = "")
        {
            ShowCounter = 1;

            if (string.IsNullOrEmpty(status))
            {
                status = _languageService.GetString("PleaseWait");
            }

            UpdateStatus(status);

            ShowBusyIndicator(true);
        }

Same methods

PleaseWaitService::Show ( PleaseWaitWorkDelegate workDelegate, string status = "" ) : void