Skip to content

Instantly share code, notes, and snippets.

@sandrinodimattia
Created July 23, 2012 07:01
Show Gist options
  • Select an option

  • Save sandrinodimattia/3162353 to your computer and use it in GitHub Desktop.

Select an option

Save sandrinodimattia/3162353 to your computer and use it in GitHub Desktop.
ScrollMode
switch (mode)
{
case ScrollMode.Vertical:
scrollProvider.SetScrollPercent(
System.Windows.Automation.ScrollPatternIdentifiers.NoScroll, percent);
break;
case ScrollMode.Horizontal:
scrollProvider.SetScrollPercent(percent,
System.Windows.Automation.ScrollPatternIdentifiers.NoScroll);
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment