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?.

link|improve this question
Where do you want to use the value? In the same class, declare a class level var for it. – Decker97 Sep 30 '11 at 6:47
move a variable outside method – Reniuz Sep 30 '11 at 6:54
feedback

2 Answers

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.