TabView.TabStripDrop Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque le système d’entrée signale un événement de suppression sous-jacent avec tabStrip comme cible de suppression.
public:
virtual event DragEventHandler ^ TabStripDrop;
// Register
event_token TabStripDrop(DragEventHandler const& handler) const;
// Revoke with event_token
void TabStripDrop(event_token const* cookie) const;
// Revoke with event_revoker
TabView::TabStripDrop_revoker TabStripDrop(auto_revoke_t, DragEventHandler const& handler) const;
public event DragEventHandler TabStripDrop;
function onTabStripDrop(eventArgs) { /* Your code */ }
tabView.addEventListener("tabstripdrop", onTabStripDrop);
tabView.removeEventListener("tabstripdrop", onTabStripDrop);
- or -
tabView.ontabstripdrop = onTabStripDrop;
Public Custom Event TabStripDrop As DragEventHandler