Server/Settings.cs
author sl
Sun, 21 Sep 2014 21:51:01 +0200
changeset 58 2a527027024d
child 123 0df386e37e29
permissions -rw-r--r--
Fixing table borders in non-inverted mode.
Experimention with color FX chessboard which is just awesome.
     1 namespace SharpDisplayManager.Properties {
     2     
     3     
     4     // This class allows you to handle specific events on the settings class:
     5     //  The SettingChanging event is raised before a setting's value is changed.
     6     //  The PropertyChanged event is raised after a setting's value is changed.
     7     //  The SettingsLoaded event is raised after the setting values are loaded.
     8     //  The SettingsSaving event is raised before the setting values are saved.
     9     internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
    10         
    11         public Settings() : base("default") {
    12             // // To add event handlers for saving and changing settings, uncomment the lines below:
    13             //
    14             // this.SettingChanging += this.SettingChangingEventHandler;
    15             //
    16             // this.SettingsSaving += this.SettingsSavingEventHandler;
    17             //
    18         }
    19         
    20         private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
    21             // Add code to handle the SettingChangingEvent event here.
    22         }
    23         
    24         private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
    25             // Add code to handle the SettingsSaving event here.
    26         }
    27     }
    28 }