This is a migrated thread and some comments may be shown as answers.

radProgressbar within radStatusStrip doesn´t work :(

0 Answers 76 Views
ProgressBar
This is a migrated thread and some comments may be shown as answers.
Dieter
Top achievements
Rank 1
Dieter asked on 22 Apr 2010, 10:57 AM
Hi Guys,
so I am playing around with my new application. I got a radStatusStrip. This contains a radProgressbar. I created a time with a tick event, looking like this :

        private void timerProgressbar_Tick(object sender, EventArgs e) 
        { 
            radProgressBarTimerTicks++; 
 
            if (radProgressBarTimerTicks >= 100) 
            { 
                radProgressBarTimerTicks = 0; 
            } 
            radProgressBar1.Value1 = radProgressBarTimerTicks; 
 
            radStatusStrip1.Refresh(); 
            radProgressBar1.Refresh(); 
        } 

I got two methods start/stopProgressbarAnimation. The Start Method enable the time to go for it :) But nothing happend. I even call refresh on each control.

I export my code to a winform application with the a radProgressbar and it works. 

Can someone help or tell me what I am doing wrong ? I canĀ“t find any information about this behavouir.

Thanks again

No answers yet. Maybe you can help?

Tags
ProgressBar
Asked by
Dieter
Top achievements
Rank 1
Share this question
or