UISettings.TextScaleFactorChanged 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 l'impostazione delle dimensioni del testo di sistema viene modificata.
// Register
event_token TextScaleFactorChanged(TypedEventHandler<UISettings, IInspectable const&> const& handler) const;
// Revoke with event_token
void TextScaleFactorChanged(event_token const* cookie) const;
// Revoke with event_revoker
UISettings::TextScaleFactorChanged_revoker TextScaleFactorChanged(auto_revoke_t, TypedEventHandler<UISettings, IInspectable const&> const& handler) const;
public event TypedEventHandler<UISettings,object> TextScaleFactorChanged;
function onTextScaleFactorChanged(eventArgs) { /* Your code */ }
uISettings.addEventListener("textscalefactorchanged", onTextScaleFactorChanged);
uISettings.removeEventListener("textscalefactorchanged", onTextScaleFactorChanged);
- or -
uISettings.ontextscalefactorchanged = onTextScaleFactorChanged;
Public Custom Event TextScaleFactorChanged As TypedEventHandler(Of UISettings, Object)
Tipo evento
TypedEventHandler<UISettings,IInspectable>
Commenti
Il valore è compreso tra 1 e 2,25.
Nota
Non tutto il testo viene ridimensionato in base allo stesso fattore. In generale, il testo più grande è, meno è influenzato dal ridimensionamento.