WPF 文本框失去焦点作为附加属性
我有一个包含许多文本框的网格,我想调用 NotifyPropertyChanged()
方法来更新一些其他控件,每次这些 TextBox 之一更改值 = 失去焦点(我不想要使用PropertyChanged
作为UpdateSourceTrigger
)
这就是我能做的:
<Grid TextBoxBase.TextChanged="My_TextChanged" >
...
</Grid>
我需要类似的东西:
TextBoxBase.OnLostFocus
I have a Grid with many TextBoxes and I want to call NotifyPropertyChanged()
method to update some other controls everytime one of these TextBox-es changed the value = lost the focus (I don't want to use PropertyChanged
as UpdateSourceTrigger
)
This is what I can do:
<Grid TextBoxBase.TextChanged="My_TextChanged" >
...
</Grid>
I need something like:
TextBoxBase.OnLostFocus
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在文本框上使用失去焦点事件
过滤器;)
如果您的属性未更改,则您的文本框将不会更新。您应该考虑改变其他 TextBox 绑定的数据,而不是使用 LostFocus 来更新您的模型。
祝你好运!
Use the lost focus event
Filter on textboxes ;)
If your properties are not changed, your Textboxes will not be updated however. You should consider mutating the data those other TextBoxes are bound to, instead of using LostFocus to update your model.
Good luck!
我怀疑,
TextBoxBase.LostFocus
是您正在寻找的事件。此处列出:http://msdn。 microsoft.com/en-us/library/system.windows.controls.primitives.textboxbase_events.aspx - 但它是在
UIElement
上定义的 - 因此您可能想尝试UIElement。 LostFocus
如果上述内容在标记中不起作用。TextBoxBase.LostFocus
is, I suspect, the event you're looking for.It's listed here: http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.textboxbase_events.aspx - but it's defined on
UIElement
- so you possibly want to tryUIElement.LostFocus
if the above doesn't work in markup.