MVVM: Tutorial from start to finish?

Locked. This question and its answers are locked because the question is off-topic but has historical significance. It is not currently accepting new answers or interactions. I’m a C#/Windows Forms programmer with more than 5 years experience. I’ve been investigating WPF using the MVVM (Model-View-ViewModel) design pattern. I have searched the Internet for tutorials. I … Read more

How to bind multiple values to a single WPF TextBlock?

I’m currently using the TextBlock below to bind the value of a property named Name: <TextBlock Text=”{Binding Name}” /> Now, I want to bind another property named ID to the same TextBlock. Is it possible to bind two or more values to the same TextBlock? Can it be done with simple concatenation, like Name + … Read more