How do you make the Header Row height autosize or even manually set it, when using Word Wrap and forcing the Header to wrap to 2 lines.
Below is a sample of the XAML, just one column that has wrap enabled. It looks correct in .NET VS2008 designer, but when running it the height of the header row is not tall enough and the 2nd line of text is cut in half.
I've looked on the forums and see some examples, but they seem very difficult to implement using a Resouce.xaml file. It seems like it should be more straightforward.
Thanks ... Chad
<
Telerik:RadGridView
SelectionMode
=
"Single"
CanUserDeleteRows
=
"False"
CanUserSortColumns
=
"True"
AutoGenerateColumns
=
"False"
IsFilteringAllowed
=
"False"
CanUserReorderColumns
=
"False"
RowDetailsVisibilityMode
=
"VisibleWhenSelected"
Telerik:StyleManager.Theme
=
"Office_Blue"
ShowGroupPanel
=
"False"
ItemsSource
=
"{Binding Path=GetData,Mode=TwoWay}"
IsReadOnly
=
"False"
>
<
Telerik:RadGridView.Columns
>
<
Telerik:GridViewDataColumn
IsReadOnly
=
"True"
Width
=
"90"
UniqueName
=
"Level1GuaranteedPercent"
>
<
Telerik:GridViewDataColumn.DataMemberBinding
>
<
Binding
Path
=
"Level1GuaranteedPercent"
>
</
Binding
>
</
Telerik:GridViewDataColumn.DataMemberBinding
>
<
Telerik:GridViewColumn.Header
>
<
TextBlock
Text
=
"Level 1 Past Purchase %"
TextWrapping
=
"Wrap"
/>
</
Telerik:GridViewColumn.Header
>
</
Telerik:GridViewDataColumn
>
</
Telerik:RadGridView.Columns
>
</
Telerik:RadGridView
>