Browse Subversion Repository
Contents of /tags/FeliCa2Money-2.7/Settings.cs
Parent Directory
| Revision Log
Revision 194 -
( show annotations)
( download)
Sat Apr 19 11:18:51 2008 UTC
(15 years, 11 months ago)
by tmurakam
File size: 1469 byte(s)
ver 2.7
| 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 |
} |
|