TextBoxBase.AppendText(String) 方法

定義

將字串附加至文字控制項的內容。

public:
 void AppendText(System::String ^ textData);
public void AppendText (string textData);
member this.AppendText : string -> unit
Public Sub AppendText (textData As String)

參數

textData
String

字串,用來指定文字以附加至文字控制項的目前內容中。

範例

下列範例示範如何使用 AppendText 方法。

private void tChanged(object sender, RoutedEventArgs e)
{
    myTextBox.AppendText("Text content of myTextBox2 has changed.");
}
Private Sub tChanged(ByVal sender As Object, ByVal e As TextChangedEventArgs)
    myTextBox.AppendText("Text content of myTextBox2 has changed.")
End Sub

備註

方法 AppendText 可讓使用者在不需要使用文字串連的情況下,將文字附加至文字控制項的內容,這在需要許多串連時,可能會產生更好的效能。

適用於