how to Use BMP image file for background of winform in c# -
i have winform , use image.bmp background of form , when run happened :
it working problem background of datagridview don't want see behind datagridview how can run form showing datagridview normally?
you need use loop , change color of each cell. after set datasource.
foreach (datagridviewrow row in yourdatagridview.rows) { row.defaultcellstyle.backcolor = color.white; }
Comments
Post a Comment