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

Customize a panel with Autoscroll property

Rate me:
Please Sign up or sign in to vote.
4.62/5 (40 votes)
2 May 20042 min read 306.2K   10.5K   98   48
Use all events of scrollbars in a panel with Autoscroll=true

Image 1

Introduction

This article show how to customize a

C#
System.Windows.Forms.Panel 
to use effectively scrollbars with the AutoScroll property. In this example, you can change enable or visible property of each scrollbar of the panel, receive scrolling events, send events to the panel and change and receive the positions of both scrollbars.

Background

With .Net, use a panel with Autoscroll property is really useful, but you can not receive events of scrollbars and personalize some functionalities like visible or enable properties of only one scrollbar for example.

Using the code

In your solution, add the file ScrollablePanel.cs to your C# project. Then, you can change type of a panel in your project by the ScrollablePanel type. Sorry but I have no time to make a visual component in a DLL.

Now you have new properties to your panel object:

  1. int AutoScrollHPos: To get or set the horizontal scrollbar position
  2. int AutoScrollVPos: To get or set the vertical scrollbar position
  3. int AutoScrollHorizontalMinimum: To get or set the horizontal scrollbar minimum range
  4. int AutoScrollHorizontalMaximum: To get or set the horizontal scrollbar maximum range
  5. int AutoScrollVerticalMinimum: To get or set the vertical scrollbar minimum range
  6. int AutoScrollVerticalMaximum: To get or set the vertical scrollbar maximum range
  7. bool EnableAutoScrollHorizontal: Enable horizontal scrollbar
  8. bool EnableAutoScrollVertical: Enable vertical scrollbar
  9. bool VisibleAutoScrollHorizontal: Visible horizontal scrollbar
  10. bool VisibleAutoScrollVertical: Visible vertical scrollbar

And your panel have now some new events:

  • C#
    public event System.Windows.Forms.ScrollEventHandler 
    ScrollHorizontal
    : receive when the horizontal scroll bar move
  • C#
    public event System.Windows.Forms.ScrollEventHandler 
    ScrollVertical
    : receive when the vertical scroll bar move
  • C#
    public event System.Windows.Forms.MouseEventHandler 
    ScrollMouseWheel
    : receive when mouse wheel move

Explanations about code in the ScrollablePanel class:

First you must create a new class that overrode the System.Windows.Forms.Panel. So, you must override the WndProc function to receive API32 scrolling messages and then to send .Net ScrollEvents.

C#
//
// WndProc function
//
protected override void WndProc(ref Message msg)
{
  base.WndProc(ref msg);
  if (msg.HWnd != this.Handle)
    return;
  switch (msg.Msg)
  {
    //
        // ...
        //

    case WM_VSCROLL:

      try
      {
        ScrollEventType type = getScrollEventType(msg.WParam);
        ScrollEventArgs arg = new ScrollEventArgs(type, 
          GetScrollPos(this.Handle, (int)SB_VERT));
        this.ScrollVertical(this, arg);
      }
      catch (Exception) { }

      break;

    case WM_HSCROLL:

      try
      {
        ScrollEventType type = getScrollEventType(msg.WParam);
        ScrollEventArgs arg = new ScrollEventArgs(type,
         GetScrollPos(this.Handle, (int)SB_HORZ));
        this.ScrollHorizontal(this, arg);
      }
      catch (Exception) { }

      break;

    default:
      break;
  }
}
Then, you can see that you are using two main functions: GetScrollPos and some const from Win32 API. Analyze the source code to see how are calle the Win32 API functions, like it for example:
C#
[DllImport("user32.dll")]
static public extern int GetScrollPos(System.IntPtr hWnd, 
 int nBar);

[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, 
 UIntPtr wParam, IntPtr lParam);

...
Note that sometimes, you need the C++ MACRO to get HIWORD or LOWORD from a WParam of a message for example. I use these two functions that seem to be good:
C#
private static int HiWord(int number)
{
  if ((number & 0x80000000) == 0x80000000)
    return (number >> 16);
  else
    return (number >> 16) & 0xffff ;
}

private static int LoWord(int number)
{
  return number & 0xffff;
}

private static int MakeLong(int LoWord, int HiWord)
{
  return (HiWord << 16) | (LoWord & 0xffff);
}

private static IntPtr MakeLParam(int LoWord, int HiWord)
{
  return (IntPtr) ((HiWord << 16) | (LoWord & 0xffff));
}
That's all, enjoy with it in the hope that it will be useful for you...

History

  • Version 1.0: receive all scrolling events and mouse wheel. Send scroll events to your panel. Get or obtain the mouse wheel delta, and ScrollEventType. The range doesn't look like to work for the moment.

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
France France
Professional in software industry, Olivier Carpentier works in Manalee corporation. Manalee has developed software for RichMedia applications like SMOX Editor, a design software for streaming presentations.

Comments and Discussions

 
PraiseIt works well on windows 10 Pin
Marco Giovanni18-Oct-16 2:09
Marco Giovanni18-Oct-16 2:09 
Generallicensing issue Pin
johnd123451-Apr-08 8:43
johnd123451-Apr-08 8:43 
GeneralThat's just what I need. Pin
lzy1564-Jan-08 21:15
lzy1564-Jan-08 21:15 
GeneralThank you. Pin
David Catriel7-Dec-07 8:22
David Catriel7-Dec-07 8:22 
QuestionThe VisibleAutoScrollHorizontal is ignored [modified] Pin
tbenami13-Jun-07 6:13
tbenami13-Jun-07 6:13 
GeneralSynchronizing Scroll Panels...Works on some machines not others. [modified] Pin
Solution_007-Dec-06 6:15
Solution_007-Dec-06 6:15 
GeneralRe: Synchronizing Scroll Panels...Works on some machines not others. Pin
Solution_007-Dec-06 13:14
Solution_007-Dec-06 13:14 
GeneralDoesn't capture all scroll events Pin
Timmers25-Sep-06 8:54
Timmers25-Sep-06 8:54 
GeneralAlways on Pin
Jimdango27-Jun-06 0:33
Jimdango27-Jun-06 0:33 
GeneralDisposing the panel Pin
pjhanb19-Apr-06 3:53
pjhanb19-Apr-06 3:53 
GeneralKool Pin
kumagKayo7-Mar-06 23:49
kumagKayo7-Mar-06 23:49 
GeneralScrollbars look in a Win98-style under .NET Framework 2.0 Pin
asm12312-Feb-06 13:06
asm12312-Feb-06 13:06 
GeneralAnother approach Pin
NetSpore9-Oct-05 7:09
NetSpore9-Oct-05 7:09 
GeneralMouse whell Scroll Pin
al77582016-Sep-05 11:00
al77582016-Sep-05 11:00 
GeneralRe: Mouse whell Scroll Pin
ensrimad5-Jul-06 6:33
ensrimad5-Jul-06 6:33 
GeneralA few bugs found Pin
gdalgas29-Aug-05 7:37
gdalgas29-Aug-05 7:37 
GeneralRe: A few bugs found Pin
Cyrus the Virus20-Jul-08 0:01
Cyrus the Virus20-Jul-08 0:01 
QuestionRe: A few bugs found Pin
Dester3114-Apr-09 3:11
Dester3114-Apr-09 3:11 
GeneralAnother small bug Pin
GaryZZZZZ27-Aug-05 14:40
GaryZZZZZ27-Aug-05 14:40 
GeneralC++ code for this example Pin
yy67821-Apr-05 9:44
yy67821-Apr-05 9:44 
GeneralQuestion Pin
tusya23-Feb-05 3:40
tusya23-Feb-05 3:40 
GeneralToo bad range doesn't work. Pin
Jeff J Anderson7-Dec-04 9:10
Jeff J Anderson7-Dec-04 9:10 
GeneralRe: Too bad range doesn't work. Pin
CVertex10-Oct-05 21:54
CVertex10-Oct-05 21:54 
GeneralRe: Fix for setting scroll position Pin
Manalee software30-Sep-04 3:34
Manalee software30-Sep-04 3:34 
GeneralRe: Fix for setting scroll position Pin
Holger Schmid20-Jun-05 20:39
Holger Schmid20-Jun-05 20:39 

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.