Develop and Download Open Source Software

Browse Subversion Repository

Contents of /tags/FeliCa2Money-2.2/Settings.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 109 - (show annotations) (download)
Sun Mar 9 06:14:50 2008 UTC (16 years, 1 month ago) by tmurakam
File size: 1469 byte(s)
ver 2.2

1 namespace FeliCa2Money.Properties {
2
3
4 // このクラスでは設定クラスでの特定のイベントを処理することができます:
5 // SettingChanging イベントは、設定値が変更される前に発生します。
6 // PropertyChanged イベントは、設定値が変更された後に発生します。
7 // SettingsLoaded イベントは、設定値が読み込まれた後に発生します。
8 // SettingsSaving イベントは、設定値が保存される前に発生します。
9 internal sealed partial class Settings {
10
11 public Settings() {
12 // // 設定の保存と変更のイベント ハンドラを追加するには、以下の行のコメントを解除します:
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 // SettingChangingEvent イベントを処理するコードをここに追加してください。
22 }
23
24 private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) {
25 // SettingsSaving イベントを処理するコードをここに追加してください。
26 }
27 }
28 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26