diff options
Diffstat (limited to 'win/Handbrake/Settings.vb')
-rw-r--r-- | win/Handbrake/Settings.vb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win/Handbrake/Settings.vb b/win/Handbrake/Settings.vb new file mode 100644 index 000000000..ce7f317b4 --- /dev/null +++ b/win/Handbrake/Settings.vb @@ -0,0 +1,11 @@ +
+Namespace My
+
+ 'This class allows you to handle specific events on the settings class:
+ ' The SettingChanging event is raised before a setting's value is changed.
+ ' The PropertyChanged event is raised after a setting's value is changed.
+ ' The SettingsLoaded event is raised after the setting values are loaded.
+ ' The SettingsSaving event is raised before the setting values are saved.
+ Partial Friend NotInheritable Class MySettings
+ End Class
+End Namespace
|