I have a problem with RadGridView on Winform C# that is couldn't change any properties of RadGridView such as IsCurrent, IsSelected, CurrentRow, ... It's not effect yet.
For example:
My grid isn't readonly, and I changed some values below:
this.myGridView.CurrentRow = this.myGridView.Rows[0];... then the value of CurrentRow when I watch is still null.
this.myGridView.Rows[0].IsCurrent = true;... then it's still show as false for that.
