TreeView.Expanding イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ツリー内のノードが展開を開始したときに発生します。
UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.TreeView.Expanding (Windows App SDKの WinUI の場合は、Windows App SDK名前空間を参照してください)。
// Register
event_token Expanding(TypedEventHandler<TreeView, TreeViewExpandingEventArgs const&> const& handler) const;
// Revoke with event_token
void Expanding(event_token const* cookie) const;
// Revoke with event_revoker
TreeView::Expanding_revoker Expanding(auto_revoke_t, TypedEventHandler<TreeView, TreeViewExpandingEventArgs const&> const& handler) const;
public event TypedEventHandler<TreeView,TreeViewExpandingEventArgs> Expanding;
function onExpanding(eventArgs) { /* Your code */ }
treeView.addEventListener("expanding", onExpanding);
treeView.removeEventListener("expanding", onExpanding);
- or -
treeView.onexpanding = onExpanding;
Public Custom Event Expanding As TypedEventHandler(Of TreeView, TreeViewExpandingEventArgs)