mmm, AFIK you can't do that.
however, you CAN do it a couple of ways.
One, create a Converter that takes your object and returns the two properties
public class Formatter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
// do some stuff with value to get your information
return myvalue;
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
// make a static resource of your converter
<Resources>
<myns:Converter x:Key="MyConverter"/>
</Resource>
// now use it in your binding
second, you can nest textblocks like so (well, maybe not in silverlight, but in WPF you can) ...
<TextBlock ...>
<TextBlock .../>
<TextBlock .../>
</TextBlock>