views:

718

answers:

1

Is there some way, how to make scrollbar wider in winforms for .net compact framework? I want to be application finger-friendly, but the scrollbars are very narrow for people with not-small fingers.

EDIT:

The problem is with built-in scrollbars in components like ListView, DataGrid, etc...

Windows Mobile 6.0, .NET Compact Framework 3.5

Thanks.

+1  A: 

I haven´t checked that, because I have no device but rumor has it that you can change the Size per Regstry Settings:

[HKEY_LOCAL_MACHINE\SYSTEM\GWE]

cyHScr=13 - Default height of horizontal scrollbar

cxVScr=13 - Default width of vertical scrollbar

Kind Regards

Thomas

twickl
But it affects all applications in device. It can break UI layout of another applications.
TcKs
Since Scrollbars are Systemwide in Use and not Control specific, you will have to create your own controls with your own scrollbar.
twickl
I think I´m wrong, check the ScrollBar Class in System.Windows.Controls.Primitives
twickl
This namespace is not available in Compact Framework.
TcKs
Have a look in the System.Windows.Forms namespace. There is a ScrollBar class there.
tomlog
@tmolog: I know System.Windows.Forms.ScrollBar class. But what should do I with it?
TcKs