Showing the progress bar
There are two methods to show the progress bar:
-
Calling the ShowProgressBar method in HierarchyNavigator, which shows the progress bar with a time span of 500 ms.
HierarchyNavigator hierarchyNavigator = new HierarchyNavigator(); hierarchyNavigator.ShowProgressBar();
-
Passing an argument in the method with a specified time span. The image below specifies a time span of 1000 ms.
HierarchyNavigator hierarchyNavigator = new HierarchyNavigator(); hierarchyNavigator.ShowProgressBar(new TimeSpan(0, 0, 0, 0, 1000));