Код: Выделить всё
private void textBox_TextChanged(object sender, TextChangedEventArgs e)
{
textBox.Text = textBox.Text.ToUpper();
}
Подробнее здесь: https://stackoverflow.com/questions/224 ... -uppercase
Код: Выделить всё
private void textBox_TextChanged(object sender, TextChangedEventArgs e)
{
textBox.Text = textBox.Text.ToUpper();
}