I see that you are a very new poster. The code of conduct here is that you really should show what you have tried and identify technical problems. No, just ask the question this way (especially the ones that make you look like you didn't even try anything).
However, and trying to help you, you better paint the cell border. This is something in the following lines, then configure:
public TableForm() { InitializeComponent(); this.tableLayoutPanel.CellPaint += tableLayoutPanel_CellPaint; } private void tableLayoutPanel_CellPaint(object sender, TableLayoutCellPaintEventArgs e) { e.Graphics.DrawLine(Pens.Black, e.CellBounds.Location, new Point(e.CellBounds.Right, e.CellBounds.Top)); }
When developing-time: 
At runtime: 
source share