I am working on a program for touchscreens. I am using c# and Visual studio 2008. Is there any way to change the width of the scrollbars? I know that i can change in Display
The easiest way would be to search for scrollbar instances in the form/control's controlcollection and then simply update the width value.
foreach(Control ctrl in dataGridProducts.Controls)
if (ctrl.GetType() == typeof(VScrollBar))
ctrl.Width = 100;
This works on Windows CE with dot net compact framework