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
vijay rags
NA
68
163.2k
Re:How to validate multiple textboxes on lostfocus in silverlight
Sep 16 2011 9:36 AM
Hi,
Please let me know how to validate mutiple textboxes in Silverlight3 on LostFocus event. I tried with LostFocus event but the application gets hanged for tab changes.
private void txtFirstName_LostFocus(object sender, RoutedEventArgs e)
{
txtFirstName.ClearValidationError();
if (string.IsNullOrEmpty(txtFirstName.Text))
{
txtFirstName.SetValidation("Please enter First Name");
txtFirstName.RaiseValidationError();
IsValid = false;
txtFirstName.Focus();
}
}
Thanks in advance.
Reply
Answers (
4
)
How to run a xaml page out of browser in Silverlight
Data Passing B/w Seilverlight Pages