Does anyone know how to enable ctrl-a to select all rows on the WinGrid control ?
Thanks,
Andrew
Hi,
the follwing code, placed in KeyUp event, will show you how to do:
{
}
Kind regards,
Ralf
Sure there is
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=6546
this.ultraGrid1.Selected.Rows.AddRange((UltraGridRow[)this.ultraGrid1.Rows.All)
This is perfect, thank you much!
thank you too.
I hadn't found the Selected property because of an itellisense problem. Writing mygrid. doesn't show the property in the list of availables. Maybe it's a problem of the version 53.20053.73?..... Have to find out.