1. 출처
How to hide vertical line for particular columns
You have yet to view any tickets. Your search criteria do not match any tickets. A server error occurred while processing your request. Please try again at a later time.
supportcenter.devexpress.com
2.
private void gridControl1_Paint(object sender, PaintEventArgs e)
{
GridViewInfo vi = gridView1.GetViewInfo() as GridViewInfo;
Point p1 = new Point(vi.ColumnsInfo[gridView1.Columns[0]].Bounds.Right-1, vi.ViewRects.Rows.Y);
Point p2 = new Point(vi.ColumnsInfo[gridView1.Columns[0]].Bounds.Right-1, vi.ViewRects.Rows.Bottom);
Pen p = new Pen(gridView1.PaintAppearance.HorzLine.BackColor);
e.Graphics.DrawLine(p,p1,p2);
}