EnableAllNotifications() public method

public EnableAllNotifications ( ) : void
return void
コード例 #1
0
ファイル: AboutDialog.cs プロジェクト: yesbb12/ParallelBFS
        btnEnableAllNotifications_Click
        (
            object sender,
            EventArgs e
        )
        {
            AssertValid();

            NotificationUserSettings oNotificationUserSettings =
                new NotificationUserSettings();

            oNotificationUserSettings.EnableAllNotifications();
            oNotificationUserSettings.Save();
        }
コード例 #2
0
    btnEnableAllNotifications_Click
    (
        object sender,
        EventArgs e
    )
    {
        AssertValid();

        NotificationUserSettings oNotificationUserSettings =
            new NotificationUserSettings();

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