MouseLeftButtonDown 后 numericUpDown ValueChanged

发布于 2024-11-07 01:39:11 字数 517 浏览 2 评论 0原文

我的表单上有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方的巷 2024-11-14 01:39:11

作为解决方法,我建议您创建自己的控件,例如:

public class MyNumericUpDown : NumericUpDown
    {
        private TextBox _textBox;
        public void Sync()
        {
            ApplyValue(_textBox.Text);
        }
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();
            _textBox = (TextBox)GetTemplateChild("Text");
        }
    }

现在您可以使用方法 Sync 将显示文本与控件 Value 属性同步。您可以通过 XAML 以声明方式或在代码隐藏中调用方法。在你的情况下:

private void Rectangle_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            myNumericUpDown.Sync();
            MessageBox.Show(myNumericUpDown.Value.ToString());
        }

As workaround I propose you to create your own control like:

public class MyNumericUpDown : NumericUpDown
    {
        private TextBox _textBox;
        public void Sync()
        {
            ApplyValue(_textBox.Text);
        }
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();
            _textBox = (TextBox)GetTemplateChild("Text");
        }
    }

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:

private void Rectangle_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            myNumericUpDown.Sync();
            MessageBox.Show(myNumericUpDown.Value.ToString());
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文