views:

88

answers:

0

My application's About dialog consists of a couple labels, an image and a LinkLabel control (link to my website). My problem is the LinkLable, which is at the bottom of the form, receives focus, so the form scrolls down to it. Since the other controls on the form don't receieve focus, I can't scroll the form.

As a workaround, I tried using AutoScrollPosition in the Load event and using this I can make sure the top of the form is displayed. But as soon as a nav key is pressed, the LinkLabel grabs focus and I'm back where I started. I guess AutoScrollPosition is an acceptable compromise, but I'm wondering if there's another/better way to do this.