How would I set focus to a textbox without specifying the name for that textbox? At the moment I am doing the following

<Window FocusManager.FocusedElement="{Binding ElementName=Username}">
    <Grid>
        <TextBox Text="{Binding Username}" Name="Username" />            
    </Grid>
</Window>

Is there any way of doing this without specifying a Name for the textbox. As I believe in MVVM having a Name element usually means bad design?

link|improve this question

I don't think having a name for an element is bad design per se, but giving an element a name just so that you can refer to it in code-behind should be avoided. I don't see anything wrong with your view above. – Wayne May 14 '10 at 14:50
Consider if you want to use triggers to do anything special in the view (animation and other state changes) - name is critical for those. – Gusdor Jul 26 '11 at 12:36
feedback

2 Answers

up vote 1 down vote accepted

I have documented a "pure MVVM" way to do this in my answer to a similar problem. The solution involves using Attached Properties and a framework for passing interface commands from the ViewModel back to the View.

link|improve this answer
feedback

As I believe in MVVM having a Name element usually means bad design?

No, it’s not.

The MVVM pattern is not about eliminating all the code from code-behind files.

It is about separating of concerns and increasing the testability. View related code like focus handling should remain in the code-behind file of the View. But it would be bad to see application logic or database connection management in the code-behind file of the View.

MVVM examples with code in the code-behind files without violating the MVVM pattern can be found at the WPF Application Framework (WAF) project.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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