0
的增加的DevExpress GridView的命令欄我的數據加載到Dev Gridview
後,我添加了一個Delete Button
:如何在最後的GridView
public void loadgrid()
{
....
gv.DataBind();
GridViewCommandColumn d = new GridViewCommandColumn();
d.DeleteButton.Text = Delete;
d.DeleteButton.Visible = true;
d.Caption = " ";
gv.Columns.Add(d);
}
但Column of Delete Button
不是在最後的GridView的(這是在左數據列爲last
)。
我真的不知道爲什麼,我只是想,當我添加時,command column
是在最後自動添加。我錯了嗎???
幫助!!!
我猜你說的是最後一欄?或最後一行? – Marguth
@Marguth Gridview –