标签: c#
如何更改DataGridViewButton中Cell的按钮属性? 这是我的代码 - 我得到错误代码-...我们只读 (DataGridViewButtonCell)MyDGV.Rows [i] .Cells [3] .Visible = true;
答案 0 :(得分:0)
您必须首先找到控件并将其转换为按钮然后获取其属性
Button btn = (Button)MyDGV.items.FindControl("ButtonName"); btn.Visible = true;