Can we concat two properties in data binding?

If you want to show, say FirstName and LastName, in a single TextBlock, then you can do like this: <TextBlock> <Run Text=”{Binding FirstName}” /> <Run Text=” ” /> <!– space –> <Run Text=”{Binding LastName}” /> </TextBlock> Now, the TextBlock’s Text property will be “Sachin Tendulkar” and will be displayed if: FirstName = Sachin LastName = … Read more

Cannot install silverlight 4 tools on visual studio 2010 sp1

Found out what happened I installed first Visual Studio, and removed some components that I thought wouldn’t be necessary (c++, f#, etc). I also removed visual web developer tools (shouldn’t have done that… you’ll see why in a minute). After that, I installed Service Pack 1. Then, when trying to install the Silverlight 4 tools, … Read more