This question is locked. New answers and comments are not allowed.
I'm trying to add a stack panel to the header of my grid view column group but I keep getting weird results. Is this not doable? I figured the header value in the grid column group would behave the same as the column header.
Code:
<telerik:GridViewColumnGroup Name="colGroup">
<telerik:GridViewColumnGroup.Header>
<StackPanel>
<TextBlock>
Some
</TextBlock>
<TextBlock>
Text Here
</TextBlock>
</StackPanel>
</telerik:GridViewColumnGroup.Header>
</telerik:GridViewColumnGroup>
Code:
<telerik:GridViewColumnGroup Name="colGroup">
<telerik:GridViewColumnGroup.Header>
<StackPanel>
<TextBlock>
Some
</TextBlock>
<TextBlock>
Text Here
</TextBlock>
</StackPanel>
</telerik:GridViewColumnGroup.Header>
</telerik:GridViewColumnGroup>