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 -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

What is happening when Matlab is starting a "parallel pool"? -