How to disable one row of DevExpress XtraGrid in C#
I am using DevExpress XtraGrid in c#.NET application. I want to disable or set readonly property 开发者_StackOverflow中文版to particular row of XtraGrid . Please Help.
You can use the GridView.ShowingEditor
event and set e.Cancel = true
精彩评论