Click here to Skip to main content
15,881,600 members
Articles / Programming Languages / Visual Basic

Advanced TrackBar (Slider) Control with MAC Style (C# & VB.NET)

Rate me:
Please Sign up or sign in to vote.
4.63/5 (49 votes)
24 Nov 2006CPOL4 min read 302.6K   20.4K   106   38
An advanced TrackBar (Slider) control that supports MAC Style and many other features
Sample Image - TrackBar_Demo.jpg

It's nicer when we put this control with other MAC Style controls as below:

Sample image

Introduction

We think about developing an advanced TrackBar (Slider) control that supports MAC Style and many other features in the time working in ‘MAC-UI Suite' project (a project focus on building a rich library of UI controls with MAC style for .NET).

Main Features

  • Supports MAC style
  • Vertical and Horizontal trackbar
  • Supports many Text Tick styles: None, TopLeft, BottomRight, Both
  • You can change Text Font, ForeColor for Text Tick
  • Supports many Tick styles: None, TopLeft, BottomRight, Both
  • You can change TickColor, TickFrequency, TickHeight
  • You can change TrackerColor and TrackerSize
  • You can change TrackLineColor and TrackLineHeight
  • Easy to Use and Integrate in Visual Studio .NET
  • 100% compatible to the standard control in VS.NET
  • 100% managed code

To explore features of this TrackBar control, just download and run the demo program.

Control Properties

Property Description
AutoSize Gets or sets a value indicating whether the height or width of the track bar is being automatically sized.
BorderColor Gets or sets the border color of the control.
BorderStyle Gets or sets the border type of the trackbar control.
IndentHeight Gets or sets the height of indent (or Padding-Y).
IndentWidth Gets or sets the width of indent (or Padding-Y).
LargeChange Gets or sets a value to be added to or subtracted from the Value property when the slider is moved a large distance.
Maximum Gets or sets the upper limit of the range this MACTrackBar is working with.
Minimum Gets or sets the lower limit of the range this MACTrackBar is working with.
Orientation Gets or sets a value indicating the horizontal or vertical orientation of the track bar.
Size Gets or sets the height and width of the control.
SmallChange Gets or sets a value to be added to or subtracted from the Value property when the slider is moved a small distance.
TextTickStyle Gets or sets the text tick style of the trackbar. There are 4 styles for selection: None, TopLeft, BottomRight, Both.
TickColor Gets or sets the tick's Color of the control.
TickFrequency Gets or sets a value that specifies the delta between ticks drawn on the control.
TickHeight Gets or sets the height of tick.
TickStyle Gets or sets the tick style of the trackbar. There are 4 styles for selection: None, TopLeft, BottomRight, Both.
TrackerColor Gets or set tracker's color.
TrackerSize Gets or sets the tracker's size. The tracker's width must be greater or equal to tracker's height.
TrackLineColor Gets or sets the color of the track line.
TrackLineHeight Gets or sets the height of track line.
Value Gets or sets a numeric value that represents the current position of the slider on the track bar.

Control Methods

Methods Description
Decrement Call the Decrement() method to decrease the value displayed by an integer you specify
Increment Call the Increment() method to increase the value displayed by an integer you specify
OnScroll Raises the Scroll event.
OnValueChanged Raises the ValueChanged event.
ResetAppearance Reset the appearance properties after the UIStyle property.
SetRange Sets the minimum and maximum values for a TrackBar.

Control Events

Event Description
Scroll Occurs when either a mouse or keyboard action moves the slider.
ValueChanged Occurs when the property Value has been changed.

Using the Control

  • Download the source code and unzip it.
  • Open VS.NET's Tool menu and select "Add/Remove ToolBox Items".
  • Click "Browse", and navigate to the MACTrackBar.dll in the bin\Release directory of the source code.
  • Click Open and then OK, the MACTrackBar control will now be in your ToolBox. Just drag the control onto your form to use it.
  • Set the control's properties, and coding an event handle, and you press F5 to run your program.

Inside the Code

The calculation for all Orientation of the Tracker may be fairly complex and interesting.

Please read the below methods for more detail:

  • DrawTickTextLine()
  • DrawTickLine()
  • OnMouseDownSlider()
  • OnMouseUpSlider()
  • OnMouseMoveSlider()

Conclusion

Basing on this core code, you can build quite easily other UI Style for the TrackBar (e.g. XP Style...). You can draw the Tracker of any style by loading pictures...

We can support easily all tracker shapes as on MAC (by loading and drawing tracker's pictures). However, to optimize the memory usage, currently I didn't add them.

I hope others find this control useful. Please feel free to report errors, issues, or requests.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Vietnam Vietnam
Founder & Manager of X-Component (MAC-UI Suite, XP-UI Suite, IDE-UI Suite...)
URL: http://www.x-component.com

MCP with below MS certifications.
- MFC
- VC++ Desktop
- VC++ Distributed

Comments and Discussions

 
GeneralMy vote of 3 Pin
Member 1413072826-Jan-19 8:20
Member 1413072826-Jan-19 8:20 
GeneralRe: My vote of 3 Pin
Ajdar1130-Nov-19 6:49
professionalAjdar1130-Nov-19 6:49 
GeneralRe: My vote of 3 Pin
Ajdar1130-Nov-19 6:49
professionalAjdar1130-Nov-19 6:49 
QuestionInvert Max and Min Pin
Vladimir J Arias L11-Aug-17 6:15
Vladimir J Arias L11-Aug-17 6:15 
QuestionChanging colors when control is disabled and enabled Pin
Mark Guzewski4-Oct-13 7:46
Mark Guzewski4-Oct-13 7:46 
QuestionThe name or namespace XComponent could not be found.. Pin
tomb181-May-12 18:12
tomb181-May-12 18:12 
GeneralMy vote of 5 Pin
Bill SerGio, The Infomercial King4-May-11 20:28
Bill SerGio, The Infomercial King4-May-11 20:28 
QuestionLicense Pin
savitabelgaonkar25-Apr-11 6:43
savitabelgaonkar25-Apr-11 6:43 
HI NicolNghia,
I really liked you MAcTrackBar, I think it will be extremely usful in a windows app that needs to run on a touch panel.
Can we use this control in a commercial application?
The code file has a mention that binary code can be used freely, but not really sure what you meant by the registered developer and codeproject user can download and use this dll?

Please confirm ASAP,
Savita
Generalbugfix Pin
avramik23-Nov-10 4:34
avramik23-Nov-10 4:34 
QuestionDecimal Steps Pin
t v123-Nov-09 15:42
t v123-Nov-09 15:42 
GeneralMouse Position Bug Pin
richardpb424-May-09 14:56
richardpb424-May-09 14:56 
QuestionError Pin
neonego4-Apr-09 18:46
neonego4-Apr-09 18:46 
GeneralHI Pin
Arun Raj.K18-Jul-08 7:28
Arun Raj.K18-Jul-08 7:28 
GeneralWhats to add a cool feature. Needs help! Pin
ALMCoder1-Jul-08 22:37
ALMCoder1-Jul-08 22:37 
Generalpls help me! i am having a dll file for custom control,how to upload it into my application Pin
saikalai19-Jun-08 0:03
saikalai19-Jun-08 0:03 
GeneralMulitple TrackPoints Pin
bizzysim6-Jul-07 9:41
bizzysim6-Jul-07 9:41 
GeneralScroll event / Keyboard Pin
antoineplantier25-Jun-07 22:35
antoineplantier25-Jun-07 22:35 
QuestionRefresh Problem? Pin
Galen_219-Jan-07 5:45
Galen_219-Jan-07 5:45 
GeneralTrackBar Pin
elavarasi14-Dec-06 20:46
elavarasi14-Dec-06 20:46 
Generalothers styles Pin
Aplicativo27-Nov-06 22:53
Aplicativo27-Nov-06 22:53 
GeneralRe: others styles Pin
NicolNghia30-Nov-06 22:21
NicolNghia30-Nov-06 22:21 
GeneralRe: others styles Pin
Aplicativo1-Dec-06 5:37
Aplicativo1-Dec-06 5:37 
GeneralGreat! Pin
UnRusoDeCaracas24-Nov-06 9:28
UnRusoDeCaracas24-Nov-06 9:28 
GeneralRe: Great! Pin
NicolNghia25-Nov-06 1:20
NicolNghia25-Nov-06 1:20 
GeneralVery nice job! Pin
Greg Cadmes15-Nov-06 10:41
Greg Cadmes15-Nov-06 10:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.