gridControl设置列宽自动适应内容:
绑定数据后调用如下代码即可设置。
gridControl1.DataSource = m_pTable
gridView1.BestFitColumns();

去除“drag a column header here to group by that column”:
gridView1.OptionsView.ShowGroupPanel = false;