Setup() public method

public Setup ( string title, string message, TrayNotificationButtons tnb = TrayNotificationButtons.tnbNone, ICommand buttonCommands = null ) : void
title string
message string
tnb TrayNotificationButtons
buttonCommands ICommand
return void
Ejemplo n.º 1
0
        TrayNotificationBalloon CreateBalloon(string title, string message,
                                              TrayNotificationButtons tnb = TrayNotificationButtons.tnbNone, ICommand[] buttonCommands = null)
        {
            var balloon = new TrayNotificationBalloon(this);

            balloon.Setup(title, message, tnb, buttonCommands);
            return(balloon);
        }
Ejemplo n.º 2
0
 TrayNotificationBalloon CreateBalloon(string title, string message,
     TrayNotificationButtons tnb = TrayNotificationButtons.tnbNone, ICommand[] buttonCommands = null) {
     var balloon = new TrayNotificationBalloon(this);
     balloon.Setup(title, message, tnb, buttonCommands);
     return balloon;
 }