Our WPF application includes report feature.
By default, UI will only display the 50 latest reports base on run date.
However, the application will provide query feature which allow to display all reports from database.
Query all reports from database may take a while if there are a lot reports in the database.
We implement the query all reports from database as background thread.
we also want to UI to indicate this is a long operation.
We could use progress bar to indicate the long operation.
Is there other UI option to indicate long operation? Thx!
JaneC