Smrf.NodeXL.ExcelTemplate.AboutDialog.btnEnableAllNotifications_Click C# (CSharp) Method

btnEnableAllNotifications_Click() private method

private btnEnableAllNotifications_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
    btnEnableAllNotifications_Click
    (
        object sender,
        EventArgs e
    )
    {
        AssertValid();

        NotificationUserSettings oNotificationUserSettings =
            new NotificationUserSettings();

        oNotificationUserSettings.EnableAllNotifications();
        oNotificationUserSettings.Save();
    }