Compartilhar via


NumberBox.Text Propriedade

Definição

Obtém ou define a representação de tipo de cadeia de caracteres da propriedade 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

Valor da propriedade

String

Platform::String

winrt::hstring

Atributos
Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallbackAttribute

Comentários

Essa propriedade existe para facilitar a obtenção da representação de cadeia de caracteres do conteúdo numérico de Value sem a necessidade de conversão de tipo. Observe que o conteúdo de Value substituirá o conteúdo dessa propriedade na configuração inicial. Após a configuração inicial, as alterações em uma serão progrogádas para a outra, mas fazer alterações programáticas consistentemente por meio de Value ajuda a evitar qualquer mal-entendido conceitual de que NumberBox aceitará caracteres não numéricos por meio dessa propriedade.

Aplica-se a