Partager via


NumberBox.Text Propriété

Définition

Obtient ou définit la représentation de type de chaîne de la propriété Value .

public:
 property Platform::String ^ Text { Platform::String ^ get(); void set(Platform::String ^ value); };
/// [get: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)]
/// [set: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)]
winrt::hstring Text();

void Text(winrt::hstring value);
/// [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)]
/// [get: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)]
/// [set: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)]
winrt::hstring Text();

void Text(winrt::hstring value);
public string Text { [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)] get; [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)] set; }
[Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)]
public string Text { [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)] get; [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=true)] set; }
var string = numberBox.text;
numberBox.text = string;
Public Property Text As String

Valeur de propriété

String

Platform::String

winrt::hstring

Attributs
Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallbackAttribute

Remarques

Cette propriété existe pour faciliter l’obtention de la représentation sous forme de chaîne du contenu numérique de Value sans avoir besoin d’une conversion de type. Notez que le contenu de Value remplace le contenu de cette propriété dans la configuration initiale. Une fois la configuration initiale terminée, les modifications apportées à l’une seront apportées à l’autre, mais le fait d’apporter systématiquement des modifications programmatiques via Value permet d’éviter tout malentendu conceptuel selon lequel NumberBox acceptera des caractères non numériques par le biais de cette propriété.

S’applique à