What happened to DataGridColumnHeader? It looks like it was dropped when the DataGrid was moved into PresentationFramework.

link|improve this question

64% accept rate
feedback

2 Answers

up vote 4 down vote accepted
+150

DataGridColumnHeader is under the System.Windows.Controls.Primitives namespace in the PresentationFramework.dll assembly.

link|improve this answer
Oh, they changed the namespace to System. I wonder why I didn't see that before. – Jonathan Allen Apr 7 '10 at 16:25
@Jonathan: Sometimes it's hard to see the wood for the trees. Glad I could help. – Jeff Yates Apr 7 '10 at 16:32
How do you reference it in XAML? – Thomas Jul 27 '10 at 17:39
1  
Did you make sure you have a reference to the DLL? It's working for me, so I'm not sure what's going on. – Jeff Yates Jul 28 '10 at 14:01
2  
show 3 more comments
feedback

Something like

<DataGrid ItemsSource="{Binding}">
    <DataGrid.Columns>
        <DataGridTextColumn Header="Column Name" Binding="{Binding Name, Mode=TwoWay}" />
    </DataGrid.Columns>
</DataGrid>
link|improve this answer
DataGridColumnHeader was used for custom styling across all headers. – Jonathan Allen Mar 31 '10 at 23:22
Yeah, that's all in WPF styles. What's your specific problem? – TFD Apr 1 '10 at 0:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.