Compartir a través de


RatingControl.ValueChanged Evento

Definición

Se produce cuando la propiedad Value ha cambiado.

API de WinUI 2 equivalente para UWP: Microsoft.UI.Xaml.Controls.RatingControl.ValueChanged (para WinUI en el SDK de Aplicaciones para Windows, consulta los espacios de nombres SDK de Aplicaciones para Windows).

// 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 de evento

Se aplica a