RatingControl.ValueChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando la proprietà Value è stata modificata.
// Register
event_token ValueChanged(TypedEventHandler<RatingControl, IInspectable const&> const& handler) const;
// Revoke with event_token
void ValueChanged(event_token const* cookie) const;
// Revoke with event_revoker
RatingControl::ValueChanged_revoker ValueChanged(auto_revoke_t, TypedEventHandler<RatingControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<RatingControl,object> ValueChanged;
function onValueChanged(eventArgs) { /* Your code */ }
ratingControl.addEventListener("valuechanged", onValueChanged);
ratingControl.removeEventListener("valuechanged", onValueChanged);
- or -
ratingControl.onvaluechanged = onValueChanged;
Public Custom Event ValueChanged As TypedEventHandler(Of RatingControl, Object)
<RatingControl ValueChanged="eventhandler"/>
Tipo evento
TypedEventHandler<RatingControl,IInspectable>