Hi.. I'm trying to hide the header row.. but the following shows the borders... How can I totally hide the Header Row?
I'm using a custom data template to display the rows in boxes...
The following worked on previous versions of the controls!!!... But DOES NOT in the current controls... thanks
I'm using a custom data template to display the rows in boxes...
The following worked on previous versions of the controls!!!... But DOES NOT in the current controls... thanks
<Style TargetType="grid:GridViewHeaderRow" x:Key="HeaderRowStyle">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderBrush" Value="White"/>
<Setter Property="Height" Value="0"/>
<Setter Property="BorderThickness" Value="0 0 0 0"/>
<Setter Property="Margin" Value="0 0 0 0"/>
</Style>