I have listBox
and dataGridView
in tableLayoutPanel
. In editor their sizes looks same, but when I start application listBox
height less then dataGridView
. Both elements's dock
property set to Fill
.
How can I fix it?
I have listBox
and dataGridView
in tableLayoutPanel
. In editor their sizes looks same, but when I start application listBox
height less then dataGridView
. Both elements's dock
property set to Fill
.
How can I fix it?
Try setting the
IntegralHeight
property on the listbox tofalse
— @500-InternalServerError