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