.net scrollbar autoscroll problem

前端 未结 5 994
自闭症患者
自闭症患者 2021-01-18 01:42

I\'m writing an app in .net that uses the autoscroll for a layout panel in a dialog. It seems that whenever I resize the window so that the vertical scrollbars should appear

5条回答
  •  天涯浪人
    2021-01-18 02:00

    This is a known bug in windows - here

    Best way to fix this is to put the table layout panel autosized inside another panel which is docked to the main form and set with autoscroll = true

    So you are no longer using the tablelayoutpanel to scroll which is buggy, you use the panel to scroll and the tablelayoutpanel is inside the panel

提交回复
热议问题