asp.net - How to hide column border of grid in WPF? -
i have following grid. have hide column border of grid , change color of row border. how in wpf?
also have make padding between cells contents.
grid lines pretty straightforward: use horizontalgridlinesbrush , verticalgridlinesbrush properties of datagrid. red horizontal lines , transparent vertical lines:
<datagrid horizontalgridlinesbrush="red" verticalgridlinesbrush="transparent"/> padding not obvious: check https://stackoverflow.com/a/5247078/786055
Comments
Post a Comment