MouseLeftButtonDown 后 numericUpDown ValueChanged
我的表单上有 2 个控件。一个numericUpDown(来自 Silverlight 工具包)和一个简单的矩形。
在矩形的 MouseLeftButtonDown 上,我弹出一个带有 numericUpDown 值的消息框。
如果我使用箭头更改 numericUpDown 的值,一切都很好。但是,如果我手动编辑该值(使用键盘)并立即单击矩形,它将显示 numericUpDown 的先前值。如果我第二次单击矩形,它将显示新值。
numericUpDown.ValueChanged 事件在 Rectangle.MouseLeftButtonDown 事件之后引发。
这是 Silverlight 的错误吗?有人知道解决方法吗?
(顺便说一句,我无法更改我的矩形控件或事件)
I have 2 controls on a form. One numericUpDown (from the Silverlight Toolkit) and a simple Rectangle.
On the MouseLeftButtonDown of the Rectangle I popup a MessageBox with the numericUpDown value.
If I use the arrows to change the value of the numericUpDown, everyting is fine. But if I edit the value manually (with the keyboard) and immediately click on the Rectangle it shows the previous value of the numericUpDown. If I click a sencond time on the rectangle it will show the new value.
The numericUpDown.ValueChanged event is raised after the Rectangle.MouseLeftButtonDown event.
Is that a Silverlight bug? Anybody knows a workaround for that?
(btw I cannot change my Rectangle controls or events)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为解决方法,我建议您创建自己的控件,例如:
现在您可以使用方法 Sync 将显示文本与控件 Value 属性同步。您可以通过 XAML 以声明方式或在代码隐藏中调用方法。在你的情况下:
As workaround I propose you to create your own control like:
Now you can use method Sync to syncronize display text with control Value property. You can call method from XAML declaratively or in code behind. In your case: