Click here to Skip to main content
15,899,679 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Firstly my progressbar is hidden. then on a button click i want to show progress bar with isinderminate=true. Then again on a button click hide the progressbar.
But on running the code progressbar is not visible at all.

code:-
button1 click

C#
pr1.Visibility=Visibility.Visible;
pr1.IsIndeterminate=true;



button2 click

C#
pr1.Visibility=Visibility.Hidden;
pr1.IsIndeterminate=false;
Posted

1 solution

Look at this: Progressbar problem
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900