카테고리 없음

[WPF] TextBox 에 한글 입력, UpdateSourceTrigger 가 바로 안될때

Chanhongv 2024. 8. 29. 08:32
private void TextBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
    var textBox = sender as TextBox;
    if (textBox != null)
    {
        var bindingExpression = textBox.GetBindingExpression(TextBox.TextProperty);
        bindingExpression?.UpdateSource(); // 수동으로 바인딩 업데이트
    }
}

 

Text 가 입력될때마다 강제 업데이트할 수 있다.