zetar
zetar

Reputation: 1233

Why is the text being cut off from this combobox?

Here's a screen shot of the problem:

enter image description here

As you can see the left-most part of the string is getting truncated. This is just a standard combobox and there's nothing overlapping it on the form.

Upvotes: 2

Views: 1394

Answers (3)

Rishiv93
Rishiv93

Reputation: 55

Just reproduced this.

As previous comments suggest, your label is most definitely too long.

Please reconsider the placement of your elements, perhaps the label should end with more space between the label and the combobox.

This can easily be done via the designer window (Shift + F7 whilst on the code behind e.g. form.cs)

Upvotes: -1

iDillon
iDillon

Reputation: 122

Bring the combobox to the front. It seems like the label before your combobox is in front of it.

Upvotes: 2

BugFinder
BugFinder

Reputation: 17858

Your label is too long!

its overwriting the edge of that edit box.

Upvotes: 7

Related Questions