Esempio n. 1
0
        public static void emitInfoTextUpdate(string infoText)
        {
            InfoTextEventArgs args = new InfoTextEventArgs();

            args.InfoText = infoText;
            OnNewInfoText(args);
        }
Esempio n. 2
0
 private static void OnNewInfoText(InfoTextEventArgs e)
 {
     NewInfoText?.Invoke(null, e);
 }
Esempio n. 3
0
 private void onNewInfoText(object sender, InfoTextEventArgs e)
 {
     Toast.MakeText(this, e.InfoText, ToastLength.Short).Show();
 }