Hi in a DataGridTextColumn I am binding to a new DataContext which works
<DataGridTextColumn Header="Name" IsReadOnly="True"
Binding="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}},Path=DataContext.CollectionName}" Width="150">
However, the TextBox says "(Collection)" so is there a way to display a properly within the Collection?
In a DataGridComboBox you state:
<Setter Property="DisplayMemberPath" Value="PropertyName"/>
But you dont have this property in a DataGridTextColumn.
Thanks