1
//Widgit is free software; you can redistribute it and/or modify
2 //it under the terms of the GNU General Public License as published by
3 //the Free Software Foundation; either version 2 of the License, or
4 //(at your option) any later version.
6 //Widgit is distributed in the hope that it will be useful,
7 //but WITHOUT ANY WARRANTY; without even the implied warranty of
8 //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 //GNU General Public License for more details.
11 //You should have received a copy of the GNU General Public License
12 //along with Widgit; if not, write to the Free Software
13 //Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USAusing System;
19 // This class allows you to handle specific events on the settings class:
20 // The SettingChanging event is raised before a setting's value is changed.
21 // The PropertyChanged event is raised after a setting's value is changed.
22 // The SettingsLoaded event is raised after the setting values are loaded.
23 // The SettingsSaving event is raised before the setting values are saved.
24 internal sealed partial class Prefs
{
27 // // To add event handlers for saving and changing settings, uncomment the lines below:
29 // this.SettingChanging += this.SettingChangingEventHandler;
31 // this.SettingsSaving += this.SettingsSavingEventHandler;
35 private void SettingChangingEventHandler(object sender
, System
.Configuration
.SettingChangingEventArgs e
) {
36 // Add code to handle the SettingChangingEvent event here.
39 private void SettingsSavingEventHandler(object sender
, System
.ComponentModel
.CancelEventArgs e
) {
40 // Add code to handle the SettingsSaving event here.