ListViewBase.ChoosingItemContainer イベント

定義

データ項目に対して項目コンテナーを選択するときに発生します。

// Register
event_token ChoosingItemContainer(TypedEventHandler<ListViewBase, ChoosingItemContainerEventArgs const&> const& handler) const;

// Revoke with event_token
void ChoosingItemContainer(event_token const* cookie) const;

// Revoke with event_revoker
ListViewBase::ChoosingItemContainer_revoker ChoosingItemContainer(auto_revoke_t, TypedEventHandler<ListViewBase, ChoosingItemContainerEventArgs const&> const& handler) const;
public event TypedEventHandler<ListViewBase,ChoosingItemContainerEventArgs> ChoosingItemContainer;
function onChoosingItemContainer(eventArgs) { /* Your code */ }
listViewBase.addEventListener("choosingitemcontainer", onChoosingItemContainer);
listViewBase.removeEventListener("choosingitemcontainer", onChoosingItemContainer);
- or -
listViewBase.onchoosingitemcontainer = onChoosingItemContainer;
Public Custom Event ChoosingItemContainer As TypedEventHandler(Of ListViewBase, ChoosingItemContainerEventArgs) 

イベントの種類

注釈

このイベントは、リストまたはグリッドの ItemsPanel が ItemsStackPanel または ItemsWrapGrid の場合にのみ発生します。 ItemsPanel を別のパネルに置き換えた場合、イベントは発生しません。

適用対象