次の方法で共有


ModuleDialogPage.CanApplyChanges プロパティ

定義

派生クラスでオーバーライドされると、ページが内部状態の変更を適用できるかどうかを示す値を取得します。

protected:
 abstract property bool CanApplyChanges { bool get(); };
protected abstract bool CanApplyChanges { get; }
member this.CanApplyChanges : bool
Protected MustOverride ReadOnly Property CanApplyChanges As Boolean

プロパティ値

true ページが内部状態の変更を適用できる場合。それ以外の場合は false

次の例では、 プロパティを CanApplyChanges 実装します。

protected override bool CanApplyChanges {
    get {
        return _hasChanges &&
            _canAccept &&
            CanChangeSettings;
    }
} 

注釈

ページが送信可能な状態でない場合 (非同期メソッドの完了を待機している場合など)、このプロパティは を返す false必要があります。

適用対象