操作說明:將游標放置在 TextBox 控制項中文字的開頭或結尾
此範例示範如何將游標放置在 TextBox 控制項的文字內容開頭或結尾。
定義 TextBox 控制項
下列 Extensible Application Markup Language (XAML) 程式碼說明 TextBox 控制項並指派其名稱。
<TextBox
Name="tbPositionCursor"
>
Here is some text in my text box...
</TextBox>
將游標放置在開頭
若要將游標放置在 TextBox 控制項的內容開頭,請呼叫 Select 方法,並將選取範圍開始位置指定為 0,以及將選取範圍長度指定為 0。
tbPositionCursor.Select(0, 0);
tbPositionCursor.Select(0, 0)
將游標放置在結尾
若要將游標放置在 TextBox 控制項的內容結尾,請呼叫 Select 方法,並將選取範圍開始位置指定為文字內容相同的長度,以及將選取範圍長度指定為 0。
tbPositionCursor.Select(tbPositionCursor.Text.Length, 0);
tbPositionCursor.Select(tbPositionCursor.Text.Length, 0)