BleMicroPythonSample.ViewModelBase.ShowLoadingDialog C# (CSharp) Метод

ShowLoadingDialog() защищенный Метод

Shows a loading dialog with the given text.
protected ShowLoadingDialog ( string text ) : void
text string Text to display.
Результат void
		protected void ShowLoadingDialog(string text)
		{
			Device.BeginInvokeOnMainThread(() =>
			{
				UserDialogs.Instance.ShowLoading(text);
			});
		}