I have table layout which i want to set border for rows only.
void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
Graphics g = e.Graphics;
Rectangle r = e.CellBounds;
}
Anyone knows how to do it in winforms, please ?