本文介绍了如何使用MVVM对文本框进行事件处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 private void txtUsername_LostFocus(对象发件人,RoutedEventArgs e) { string usergrouptxt = txtUsername.Text; 尝试 { if ( string .IsNullOrEmpty(usergrouptxt)) { txtUsername.BorderBrush = new SolidColorBrush(Colors.Red); } 其他 { } } catch (SqlException usrgrpexc) { MessageBox.Show(usrgrpexc.ToString()); } } 我该怎么做我在MVVM中的ViewModel中的上述操作?解决方案 private void txtUsername_LostFocus(object sender, RoutedEventArgs e) { string usergrouptxt = txtUsername.Text; try { if (string.IsNullOrEmpty(usergrouptxt)) { txtUsername.BorderBrush = new SolidColorBrush(Colors.Red); } else { } } catch (SqlException usrgrpexc) { MessageBox.Show(usrgrpexc.ToString()); } }How can I do the above operation in my ViewModel in MVVM? 解决方案 这篇关于如何使用MVVM对文本框进行事件处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-10 11:12