Linklabel Font Problem

Dear Wyatt ...

I loved your Open Source linklabel2. The only problem i have is when i have linklabel2 font bold. In MouseHover Event the linklabel font becomes normal. it should remain bold.

Regards

Mishipal

Mishipal,

I've uploaded LinkLabel 2.3. It fixes the bug. Thanks for spotting this.

There is also a small bug with spacing when image is added without any text.

Line:

width = textRect.Width + 1 + image.Width + imageRightPad;

Needs to be changed to:

width = textRect.Width + 1 + image.Width;

That is by design. It's assumed all LinkLabels will have text and optionally have images.