Binding ViewModel property in DataGridTextColumn
问题 For an application I need to create a DataGrid with a DataGridTextColumn which has MultiBinding . The first Binding uses a property given in the ItemsSource, the second Binding should use a Property from my ViewModel. <DataGridTextColumn Header="Hourly wage" SortMemberPath="HourlyWage"> <DataGridTextColumn.Binding> <MultiBinding StringFormat="{}{0}{1}"> <Binding Path="HourlyWage" /> <Binding Path="CurrencyUnit" /> </MultiBinding> </DataGridTextColumn.Binding> </DataGridTextColumn> In that