ToggleButton.Indeterminate イベント

定義

ToggleButton の状態が不確定状態に切り替わるときに発生します。

// Register
event_token Indeterminate(RoutedEventHandler const& handler) const;

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

// Revoke with event_revoker
ToggleButton::Indeterminate_revoker Indeterminate(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler Indeterminate;
function onIndeterminate(eventArgs) { /* Your code */ }
toggleButton.addEventListener("indeterminate", onIndeterminate);
toggleButton.removeEventListener("indeterminate", onIndeterminate);
- or -
toggleButton.onindeterminate = onIndeterminate;
Public Custom Event Indeterminate As RoutedEventHandler 
<togglebutton Indeterminate="eventhandler"/>

イベントの種類

適用対象