This question is locked. New answers and comments are not allowed.
Hello,
I have a question (and an enhancement request) that the ControlTemplate of the GridViewHeaderCell be changed slightly.
Currently the states are:
And I would like to see them grouped and a new state added like this:
This would align the states more closely to other similar controls as well as give the designer the ability to still show a mouseover effect when a column is sorted...
I have a question (and an enhancement request) that the ControlTemplate of the GridViewHeaderCell be changed slightly.
Currently the states are:
<VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal" /> <VisualState x:Name="MouseOver" /> <VisualState x:Name="Ascending" /> <VisualState x:Name="Descending" /> </VisualStateGroup> </VisualStateManager.VisualStateGroups>And I would like to see them grouped and a new state added like this:
<VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal" /> <VisualState x:Name="MouseOver" /> </VisualStateGroup> <VisualStateGroup x:Name="SortStates"> <VisualState x:Name="Unsorted" /> <VisualState x:Name="Ascending" /> <VisualState x:Name="Descending" /> </VisualStateGroup> </VisualStateManager.VisualStateGroups> This would align the states more closely to other similar controls as well as give the designer the ability to still show a mouseover effect when a column is sorted...