chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore - 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
namespace 報到系統客戶端.Properties {
|
||||
|
||||
|
||||
// 這個類別可以讓您處理設定類別上的特定事件:
|
||||
// 在設定值變更之前引發 SettingChanging 事件。
|
||||
// 在設定值變更之後引發 PropertyChanged 事件。
|
||||
// 在載入設定值之後引發 SettingsLoaded 事件。
|
||||
// 在儲存設定值之前引發 SettingsSaving 事件。
|
||||
internal sealed partial class Settings {
|
||||
|
||||
public Settings() {
|
||||
// // 若要加入用於儲存與變更設定的事件處理常式,請取消註解下列程式行:
|
||||
//
|
||||
// this.SettingChanging += this.SettingChangingEventHandler;
|
||||
//
|
||||
// this.SettingsSaving += this.SettingsSavingEventHandler;
|
||||
//
|
||||
}
|
||||
|
||||
private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) {
|
||||
// 在此加入程式碼以處理 SettingChangingEvent 事件。
|
||||
}
|
||||
|
||||
private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
|
||||
// 在此加入程式碼以處理 SettingsSaving 事件。
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user