Is there an easy way to change header font size without overwriting completely duplicating ColumnHeaderTemplate?
Note: Not sure if it is relevant, but I use an application theme (PresentationFramework.Royale) which provides the ColumnHeaderTemplate.
|
|
Is there an easy way to change header font size without overwriting completely duplicating ColumnHeaderTemplate? Note: Not sure if it is relevant, but I use an application theme (PresentationFramework.Royale) which provides the ColumnHeaderTemplate.
|
||
|
|
|
|
If you aren't also applying a style to the Column Headers, you could use that. And even if you are, by setting the BasedOn property on the style you can maintain everything but what you want to change.
So, in order to keep the Royale theme on the Column Headers we do need to use the BasedOn property of the Style we created. Here's the updated Style deffinition that will both allow you to modify what you like, and retain the Royale Theme:
|
|||
|
|
|
|
The GridViewColumnHeader is a content control, so if you set its content to a TextBlock in which the text you want is the proper size, life should be good. |
||
|
|