UltraWinGrid enter edit mode issue
问题 I have an UltraWinGrid and I want to give the focus to a specific cell and make it enter edit mode programmatically ( no click ). So I did this : If myUltraWinGrid.ActiveRow IsNot Nothing Then myUltraWinGrid.ActiveCell = myUltraWinGrid.ActiveRow.Cells("foo") myUltraWinGrid.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.EnterEditMode) Else myUltraWinGrid.ActiveCell = myUltraWinGrid.Rows(0).Cells("foo") myUltraWinGrid.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction