how to add a text box inside the silverlight data grid column header?
so that i can use the开发者_StackOverflow中文版 text boxes for the filteration purpose?
<sdk:DataGridTextColumn.Header>
<TextBox Text="{Binding YourTargetProperty}"/>
</sdk:DataGridTextColumn.Header>
The following article deals with the Filtering and Sorting. http://www.codeproject.com/Articles/83906/Silverlight-4-Datagrid-Sorting-Grouping-Filtering-.aspx
精彩评论