Click here to Skip to main content
15,887,683 members
Articles / Programming Languages / C#
Article

Audio Mixing Console Fader/Slider Control

Rate me:
Please Sign up or sign in to vote.
4.72/5 (16 votes)
25 May 20042 min read 149.1K   3.7K   48   33
A control to replicate behaviour and appearance of an audio mixing console fader/slider.

Sample Image - avfader.png

Introduction

Recently, I came up with an idea for a program that required the ability to mimic certain aspects of a audio or lighting console. While I could find controls that could do a decent job for knobs, dials and meters, I couldn't find a decent slider control that looked anything remotely like a fader control found on these consoles.

So, I did what any self respecting self taught programmer would do while learning a new language. I decided to break my teeth on learning how to create my own custom controls in C#. Hence, the birth of the AVFader control. This is my first attempt at creating a custom control. I must say that the experience wasn't anywhere near as bad as I thought it might be, in fact, it was actually quite fun to create.

Implementation

My first attempt at this control was to try and extend the TrackBar control and just override the OnPaint and WndProc methods. After discussing various pitfalls in such an implementation with a good friend of mine Fadrian, he basically told me it would be easier to just create one from scratch. Thankfully, after a quick look through the MSDN documentation, it turned out he was correct. The TrackBar control has an unbelievable amount of Windows messages going in and out of it.

Even though I have created this control from scratch, I have tried where possible to make the properties as close to the TrackBar settings because that control, while ugly, is very easy to use. In theory, you should be able to drop this control in over the top of an existing TrackBar control without any hassles.

Design Constraints

You will recall that I was trying to replicate a fader as found on an audio mixing console, while also keeping it close to the TrackBar control. Well, as with any project, I have sacrificed some features, some due to simplicity and some due to realism constraints.

  • Orientation is always vertical (realism).
  • Tick scale is linear not exponential (simplicity).
  • Clicking on the slider track will not move the slider (realism).
  • Slider movement is smooth and doesn't snap to the ticks (realism).

Please take these constraints into account when playing with this control.

Code

This is used to move the slider image when dragging the slider along the track:

C#
private void MoveSlider(int delta)
{
    // Move the slider and make sure it stays in the bounds of the control
    if (delta < 0 && (this.picSlider.Top + delta) <= 0)
        this.picSlider.Top = 0;
    else if (delta > 0 && (this.picSlider.Top 
      + this.picSlider.Height + delta) >= this.Height)
        this.picSlider.Top = this.Height - this.picSlider.Height;
    else
        this.picSlider.Top += delta;
    this.CalculateSliderValue();
}

This is used to move the slider based on the value of the Value property:

C#
private void MoveSlider()
{
    // distance between tics used in ratio calc
    int distance = Math.Abs(this._maxValue) + Math.Abs(this._minValue);
    // percentage of control travelled
    float percent = (float)this._value / (float)distance;
    // New slider location
    this.picSlider.Top = this.Height - this.Top - 
      Convert.ToInt32(percent * (float)(this.Height - this.picSlider.Height));
}

And lastly, this one is pretty self explanatory, it calculates the value of the Value property based on the location of the slider image on the control:

private void CalculateSliderValue()
{
    // distance between tics used in ratio calc
    int distance = this.Height - this.picSlider.Height;
    // percentage of control travelled
    float percent = (float)this.picSlider.Top / (float)distance;
    // Slider movement in points
    int movement = Convert.ToInt32(percent * (float)(Math.Abs(this._maxValue) 
                   + Math.Abs(this._minValue)));
    // New value
    this._value = 
        (this._maxValue >= 0) ? this._maxValue - 
        movement : this._maxValue + movement;
    // Raise the ValueChanged event
    ValueChanged(this, new EventArgs());
}

Conclusion

Overall, I'm quite happy with this as a first attempt at control development. It does what I need it to do, and also without exploding in my face. Hopefully, someone else can find this useful as well.

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
Web Developer
Australia Australia
Tim is one of the two co-founding Directors of web design and development company Reality Edge Media. He maintains an active interest in understanding new technologies while trying to solve the worlds big problems. Tim's current favourite technologies include C#, PHP and MySQL. He specialises in web security, systems architecture and design and database development.

Comments and Discussions

 
GeneralRe: controls witout limits ... Pin
.dan.g.26-May-04 21:06
professional.dan.g.26-May-04 21:06 
GeneralRe: controls witout limits ... Pin
Mr Smiley27-May-04 12:47
Mr Smiley27-May-04 12:47 
GeneralRe: controls witout limits ... Pin
.dan.g.27-May-04 18:43
professional.dan.g.27-May-04 18:43 
GeneralRe: controls witout limits ... Pin
Bernhard Hofmann26-May-04 21:51
Bernhard Hofmann26-May-04 21:51 
GeneralRe: controls witout limits ... Pin
Mr Smiley27-May-04 12:52
Mr Smiley27-May-04 12:52 
GeneralRe: controls witout limits ... Pin
Mr Smiley27-May-04 12:49
Mr Smiley27-May-04 12:49 
GeneralRe: controls witout limits ... Pin
Leslie Sanford27-May-04 22:39
Leslie Sanford27-May-04 22:39 
GeneralRe: controls witout limits ... Pin
Mr Smiley27-May-04 23:05
Mr Smiley27-May-04 23:05 

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.