Cookie Consent by Free Privacy Policy Generator
Privacy
Polipone
<novembre 2024>
lunmarmergiovensabdom
28293031123
45678910
11121314151617
18192021222324
2526272829301
2345678
Immagini

UniversalApp - MessageBox

  • Aggiungere la using Windows.UI.Popups;
  • Creazione Messaggio:
    • var messageDialog = new MessageDialog("my message" [, "MESSAGE"]);
  • Aggiunta bottoni (opzionale)
    • messageDialog.Commands.Add(new UICommand("OK", new UICommandInvokedHandler(this.CommandInvokedHandler)));
    • messageDialog.Commands.Add(new UICommand("Cancel", new UICommandInvokedHandler(this.CommandInvokedHandler)));
    • messageDialog.DefaultCommandIndex = 0;
    • messageDialog.CancelCommandIndex = 1;
  • Esecuzione del Messaggio:
    • await messageDialog.ShowAsync();
  • Aggiunta gestore evento bottoni (opzionale)
    • private void CommandInvokedHandler(IUICommand command)
    • {
    •     // Do something here on the command handler
    • }

 

Notifiche