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

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