时间:2019-03-17 标签:c#savetrackbar.value

发布于 2024-12-07 11:43:22 字数 207 浏览 0 评论 0原文

我试图将 TrackBar 值保存到变量中,但无法做到这一点,因为该值一直在变化。

void VolumeBarScroll(object sender, System.EventArgs e)
    {

    int a = VolumeBar.Value;

     }

有什么办法可以保值吗?

I'm trying to save a TrackBar value to a variable but can't manage to do it since the value changed all the time.

void VolumeBarScroll(object sender, System.EventArgs e)
    {

    int a = VolumeBar.Value;

     }

Is there any way of keeping a value?.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

痴情换悲伤 2024-12-14 11:43:22

如果您需要立即设置值 - 使用 ValueChanged 事件。
如果您需要在完成更改后仅设置一次值 - 使用 MouseCaptureChanged 事件。

Scroll 事件 - 它是行为事件。

当鼠标或键盘操作移动滚动框时发生。

因此,您可能需要:

    int trackValue = 0;
    private void trackBar1_MouseCaptureChanged(object sender, EventArgs e)
    {
        trackValue = this.trackBar1.Value;
    }

此外,如果您需要在事件处理程序之外使用它,您还尝试将值保存到事件处理程序内部的局部变量中对于事件处理程序,您需要在处理程序之外定义变量。

If you need to set value instantly - use ValueChanged event.
If you need to set value only once after finish changing - use MouseCaptureChanged event.

Scroll event - it's behaviour event.

Occurs when either a mouse or keyboard action moves the scroll box.

So, probably you need:

    int trackValue = 0;
    private void trackBar1_MouseCaptureChanged(object sender, EventArgs e)
    {
        trackValue = this.trackBar1.Value;
    }

Also, you are trying to save value to a local variable inside of event handler, if you need to use it outside of event handler, you need to define variable outside of the handler.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文