Devexpress focus particular LayoutControl in windows form
Can't focus control on tabbed layoutcontrol group
Solution:
Use FocusHelper.PlaceItemIntoView(XXX) Solved problem...
Example:
Here, I would like to focus on LayoutControlItem37.
Can't focus control on tabbed layoutcontrol group
Solution:
Use FocusHelper.PlaceItemIntoView(XXX) Solved problem...
Example:
Here, I would like to focus on LayoutControlItem37.
LayoutControl1.FocusHelper.PlaceItemIntoView(LayoutControlItem37)
LayoutControl1.FocusHelper.FocusElement(LayoutControlItem37, False)
0 Comments