ApplicationSettingsBase.SettingsSaving イベント

定義

データ ストアに値が保存される前に発生します。

public:
 event System::Configuration::SettingsSavingEventHandler ^ SettingsSaving;
public event System.Configuration.SettingsSavingEventHandler SettingsSaving;
member this.SettingsSaving : System.Configuration.SettingsSavingEventHandler 
Public Custom Event SettingsSaving As SettingsSavingEventHandler 

イベントの種類

次のコード例は、 SettingsSaving から派生したApplicationSettingsBaseラッパー クラスである 型FormSettingsの オブジェクトのイベント ハンドラーを示しています。 ハンドラーは、ユーザーにクエリを実行して、現在のアプリケーション設定のプロパティ値を保存します。 完全なコード例は、クラスの概要に ApplicationSettingsBase 記載されています。

private:
    void FormSettings_SettingsSaving(Object^ sender,
        CancelEventArgs^ e)
    {
        //Should check for settings changes first.
        ::DialogResult^ dialogResult = MessageBox::Show(
            "Save current values for application settings?",
            "Save Settings", MessageBoxButtons::YesNo);
        if (::DialogResult::No == dialogResult)
        {
            e->Cancel = true;
        }
    }
void frmSettings1_SettingsSaving(object sender, CancelEventArgs e)
{
    //Should check for settings changes first.
    DialogResult dr = MessageBox.Show(
                    "Save current values for application settings?",
                    "Save Settings", MessageBoxButtons.YesNo);
    if (DialogResult.No == dr)
    {
        e.Cancel = true;
    }
}
Private Sub frmSettings1_SettingsSaving(ByVal sender As Object, ByVal e As _
        CancelEventArgs) Handles frmSettings1.SettingsSaving
    'Should check for settings changes first.
    Dim dr As DialogResult = MessageBox.Show( _
        "Save current values for application settings?", "Save Settings", _
        MessageBoxButtons.YesNo)
    If (System.Windows.Forms.DialogResult.No = dr) Then
        e.Cancel = True
    End If
End Sub

注釈

イベントは SettingsSaving 、アプリケーション設定のプロパティを Save 関連付けられたデータ ストアに格納する前に、 メソッドによって発生します。 関連付けられたイベント ハンドラーは、このイベントを取り消すことができます。

適用対象

こちらもご覧ください