Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to learn how to do proper wpf application and now I have a big trouble. I know how I would do this if I had to do it with Windows Forms, but I don't know how to modify it to fit with wpf. Would someone know the answer? Here is my code for Windows Forms Form_loaded event:

foreach (Control ctrl in this.Controls)
        {
            if (ctrl is TextBox)
            {
                ctrl.Text = "";
            }
        }
share|improve this question

2 Answers

up vote 1 down vote accepted

Try this post

share|improve this answer

you can use Textbox templates for this purpose . its very easy

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.