-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.cs
28 lines (23 loc) · 1.33 KB
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace GlucoseTaskbar.Properties {
// Esta classe permite que você trate eventos específicos na classe de configurações:
// O evento SettingChanging é gerado antes da alteração de um valor de configuração.
// O evento PropertyChanged é gerado depois da alteração de um valor de configuração.
// O evento SettingsLoaded é gerado depois do carregamento dos valores de configuração.
// O evento SettingsSaving é gerado antes de salvar os valores de configuração.
internal sealed partial class Settings {
public Settings() {
// // Para adicionar manipuladores de eventos para salvar e alterar configurações, remova os comentários das linhas abaixo:
//
// this.SettingChanging += this.SettingChangingEventHandler;
//
// this.SettingsSaving += this.SettingsSavingEventHandler;
//
}
private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
// Adicione código para manipular o evento SettingChangingEvent aqui.
}
private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
// Adicione código para manipular o evento SettingsSaving aqui.
}
}
}