Winforms - Adjust width of vertical scrollbar on CheckedListBox
I have a CheckListBox on my form but I want to make the scrollbar wider as users are using touch screens not a mouse. How can I change the scroll bar width? EDIT: I am talking about the width of the vertical scrollbar To change the physical size of the scrollbar, see this . This came from the following page: Horizontal Scrollbar in ListBox . I modified it for Winforms and it worked for me: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices;