Bagikan melalui


Cara: Mengaktifkan Karakter Tab dalam Kontrol Kotak Teks

Contoh ini menunjukkan cara mengaktifkan penerimaan karakter tab sebagai input normal dalam kontrol TextBox.

Contoh

Untuk mengaktifkan penerimaan karakter tab sebagai input dalam kontrol TextBox, atur atribut AcceptsTab ke true.

<TextBox AcceptsTab="True">
  If the AcceptsTab element is "True", the TextBox control will accept tab characters as regular input when the TAB key is pressed.  
  If AcceptsTab is "False" (the default), pressing TAB moves the focus to the next focusable control. 
</TextBox>

Lihat juga