I'm making an instant messaging application in C#. The problem that I'm facing right now is that for the contacts list I've made a custom control extending
userControl, which contains a
FlowLayoutPanel`.
That panel will contain a list of userControls. I want to customize the VscrollBar
, but no chance (not possible). Instead I have this genius idea to hide the VscrollBar
from the FlowLayoutPanel
, and make simple buttons (UP and down events). For this everything worked like a charm, but when I tried to hide the VscrollBar by making the property autoScroll = false
, the buttons stopped working.
How can I hide the VscrollBar
?