Skip to content

Instantly share code, notes, and snippets.

@iraSenthil
Created April 18, 2011 22:36
Show Gist options
  • Save iraSenthil/926418 to your computer and use it in GitHub Desktop.
Save iraSenthil/926418 to your computer and use it in GitHub Desktop.
UltraWinGrid ActiiveRow default selection
void LoadGrid(List<ViewModel> viewModels)
{
bindingSource.Clear();
foreach (var model in viewModels)
bindingSource.Add(model);
}
void LoadGrid(List<ViewModel> viewModels)
{
bindingSource.Clear();
foreach (var model in viewModels)
bindingSource.Add(model);
//Makes no diffrence
ultraWinListGrid.ActiveRow = null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment