Can we concat two properties together in binding expression? If possible without converter or without writing two textblocks and setting them individually?
If you want to show, say FirstName and LastName, in a single TextBlock, then you can do like this:
FirstName
LastName
TextBlock
Now, the TextBlock's Text property will be "Sachin Tendulkar" and will be displayed if:
Text
"Sachin Tendulkar"
FirstName = Sachin LastName = Tendulkar
Hope that helps.