ModuleListPage.OnSetView メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
派生クラスでオーバーライドされると、ビューが更新されます。
protected:
virtual void OnSetView();
protected virtual void OnSetView ();
abstract member OnSetView : unit -> unit
override this.OnSetView : unit -> unit
Protected Overridable Sub OnSetView ()
例
次の例では、ビュー モードが Details の場合にページの説明を更新 します。
protected override void OnSetView() {
bool updateDescription = false;
View currentView = ListView.View;
if ((_lastListViewView == View.Details &&
currentView != View.Details) ||
currentView == View.Details) {
updateDescription = true;
}
if (updateDescription){
UpdateDescriptions(ListView.View);
Sort(_keyHeader, this.SortOrder);
}
_lastListViewView = currentView;
}
注釈
基底クラスは何も行いません。