TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sanju Singh
NA
280
44.4k
STATUS BAR TEXT NOT UPDATED
Dec 28 2014 12:50 AM
hello,
in my application i am updating the status bar text property many a times as the different part of code is executed. However, i can see only the last update been performed.
ex:
textBlock1.Text = " Launching your application. please wait ...";
/// some code
textBlock1.Text = " i am ready !";
// some more code here
textBlock1.Text = " done !";
output is :: done !
Is this because the updates are performed very fast?If so how do i handle this situation ? I want the text to stay for some time on screen before the next update.
I tried : thread.sleep(1000); but looks like it is not the right way and it is not working. can anyone help me on this?
thank you
Reply
Answers (
9
)
using strings for updating status
ItemTemplate in List box in WPF