How to prevent stealing focus when clicking on a usercontrol? [duplicate]
I want to 开发者_运维知识库be able to click on my user control and not have it steal focus from any other control. I know when you click on a label it doesn't steal focus. How can this be done?
Try disabling your control's ControlStyles.Selectable flag.
精彩评论