TextBox




TextBox

Permette all'utente di inserire del testo.
  • AcceptsReturn
  • TextWrapping
  • IsReadOnly

Evento SelectionChanged:
private void TextBox_SelectionChanged(object sender, RoutedEventArgs e)
		{
			TextBox textBox = sender as TextBox;
			txtStatus.Text = "Selection starts at character #" + textBox.SelectionStart + Environment.NewLine;
			txtStatus.Text += "Selection is " + textBox.SelectionLength + " character(s) long" + Environment.NewLine;
			txtStatus.Text += "Selected text: '" + textBox.SelectedText + "'";
		}

Le proprietà sono anche scrivibili: è possibile usarle per cambiare la selezione.