user1731110
user1731110

Reputation: 75

How to show a process progressing without knowing when it would finish

When I have a process that I know when it would finishes, I would use a progress bar. But what can I use to show that a process is progressing but I have no idea when it would finishes?

Is there any special control for this in WPF?

Upvotes: 1

Views: 172

Answers (2)

Nasreddine
Nasreddine

Reputation: 37848

Why not use a ProgressBar with IsIndeterminate set to true ?

enter image description here

Upvotes: 8

Ekk
Ekk

Reputation: 5715

I suggest you use BusyIndicator to show that the application is in progress.

Upvotes: 4

Related Questions