c# - Transparent background for WPF Listview Header -


i wish create table using listview.

the background of table header must transparent.

how achieve this?

set background of listview transparent , define gridviewcolumnheader style sets background transparent:

<listview ...           background="transparent">     <listview.resources>         <style targettype="gridviewcolumnheader">             <setter property="background" value="transparent" />         </style>     </listview.resources>     <listview.view>         <gridview>             <gridviewcolumn .../>         </gridview>     </listview.view> </listview> 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -