Click here to Skip to main content
15,896,453 members
Articles / Multimedia / GDI+

Core Custom Scrollbar Class

Rate me:
Please Sign up or sign in to vote.
3.37/5 (20 votes)
23 Jul 200410 min read 148K   3.7K   34  
This is a fully drawn GDI+ custom scrollbar control class. All of its drawing methods are overrideable, allowing developers to paint it however they choose.
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices

' General Information about an assembly is controlled through the following 
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.

' Review the values of the assembly attributes

<Assembly: AssemblyTitle("Core Custom Scrollbar Class")> 
<Assembly: AssemblyDescription("This is a fully drawn gdi+ custom scrollbar control class. All of it's drawing methods are overrideable allowing developers to paint it however they choose.")> 
<Assembly: AssemblyCompany("Code Vendor")> 
<Assembly: AssemblyProduct("N/a")> 
<Assembly: AssemblyCopyright("2004 Copyright Adam Smith")> 
<Assembly: AssemblyTrademark("N/a")> 
<Assembly: CLSCompliant(True)> 

'The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("87A09566-8F33-485C-99AC-266F629287D4")> 

' Version information for an assembly consists of the following four values:
'
'      Major Version
'      Minor Version 
'      Build Number
'      Revision
'
' You can specify all the values or you can default the Build and Revision Numbers 
' by using the '*' as shown below:

<Assembly: AssemblyVersion("1.0.*")> 

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Codevendor
United States United States
Please visit my personal website https://codevendor.com for my latest codes and updates.

Comments and Discussions