Cookie Consent by Free Privacy Policy Generator Polipone
<aprile 2025>
lunmarmergiovensabdom
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011
  • 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

Privacy