| | |
| | | { |
| | | if (_allBindingList != null && _allBindingList.Count > 0) |
| | | { |
| | | await Task.Run(() => |
| | | { |
| | | var dataSourceIndex = _allBindingList.FindIndex(x => x.Vmo == _selected); |
| | | if (dataSourceIndex >= 0) |
| | | { |
| | | var rowIndex = this.gridView1.GetRowHandle(dataSourceIndex); |
| | | this.gridView1.FocusedRowHandle = rowIndex; |
| | | } |
| | | }); |
| | | var dataSourceIndex = _allBindingList.FindIndex(x => x.Vmo == _selected); |
| | | if (dataSourceIndex >= 0) |
| | | { |
| | | var rowIndex = this.gridView1.GetRowHandle(dataSourceIndex); |
| | | this.gridView1.FocusedRowHandle = rowIndex; |
| | | } |
| | | } |
| | | } |
| | | } |