I'd really like to be able to do some manipulation to the stuff I'm binding. Similar to being able to call String.Format() in a <%#%> tag in ASP.Net.
For example, assuming this is the type I'm binding:
class User {
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
}
and this is the Label I'm binding it to (I know this won't work):
<Label Name="someLabel" Content="{Binding LastName+,+FirstName+ +Age}")/>
Where I want the outcome to be: Smith,John 32