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

 
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 
GeneralRe: Fix for setting scroll position Pin
annalady5-May-06 4:18
annalady5-May-06 4:18 
GeneralRe: Fix for setting scroll position Pin
handa2929-Aug-06 17:35
handa2929-Aug-06 17:35 
GeneralRe: Fix for setting scroll position Pin
Cyrus the Virus25-Jul-08 21:49
Cyrus the Virus25-Jul-08 21:49 
GeneralFix for setting scroll position Pin
Mathew Hall30-Sep-04 3:12
Mathew Hall30-Sep-04 3:12 
For my article Themed Windows XP style Explorer Bar I was forced to some playing around with scrollbars on panels. During all of this, I noticed that using the Panels SetDisplayRectLocation method scrolls the client area but doesn't update the scrollbars, and that using SetScrollPos moves the scrollbars but not the client area. The solution? when you use one, you must also use the other.

C#
public int AutoScrollHPos
{
  get 
  { 
    return GetScrollPos(this.Handle, (int)SB_HORZ); 
  }

  set 
  {
    SetScrollPos(this.Handle, (int)SB_HORZ, value, true); 
    SetDisplayRectLocation(-value, -DisplayRectangle.Y);
  }
}

public int AutoScrollVPos
{
  get 
  { 
    return GetScrollPos(this.Handle, (int)SB_VERT); 
  }

  set 
  { 
    SetScrollPos(this.Handle, (int)SB_VERT, value, true);
    SetDisplayRectLocation(-DisplayRectangle.X, -value);
  }
}


"I think I speak on behalf of everyone here when I say huh?" - Buffy
QuestionHow About WebBroser Control Pin
ggmemo26-Sep-04 17:06
ggmemo26-Sep-04 17:06 
AnswerRe: How About WebBroser Control Pin
inshua11-Apr-06 23:44
inshua11-Apr-06 23:44 
GeneralQuestion about SetScrollPos Pin
gigatoad20-Aug-04 7:01
gigatoad20-Aug-04 7:01 
Generalbug in AutoScrollVPos property Pin
Jerome Bellanger6-Jul-04 3:02
Jerome Bellanger6-Jul-04 3:02 
GeneralRe: bug in AutoScrollVPos property Pin
Anonymous11-Mar-05 8:31
Anonymous11-Mar-05 8:31 
GeneralThe mouse wheel event ! Pin
jamanjaangiyo29-Jun-04 11:12
jamanjaangiyo29-Jun-04 11:12 
GeneralRe: The mouse wheel event ! Pin
Solution_007-Dec-06 6:01
Solution_007-Dec-06 6:01 
GeneralStrange... Pin
Jakub Florczyk21-Jun-04 0:50
Jakub Florczyk21-Jun-04 0:50 
GeneralJust a little bug.. Pin
Manalee software3-May-04 21:12
Manalee software3-May-04 21:12 
GeneralRe: Just a little bug.. Pin
Mathew Hall30-Sep-04 4:36
Mathew Hall30-Sep-04 4:36 
GeneralRe: Just a little bug.. Pin
Omri Shaked25-Apr-05 2:46
Omri Shaked25-Apr-05 2:46 
QuestionHow about... Pin
leppie3-May-04 9:04
leppie3-May-04 9:04 
AnswerRe: How about... Pin
Grut3-May-04 12:44
Grut3-May-04 12:44 
AnswerRe: How about... Pin
Manalee software3-May-04 21:08
Manalee software3-May-04 21:08 
GeneralRe: How about... Pin
leppie4-May-04 0:06
leppie4-May-04 0:06 
GeneralRe: How about... Pin
Carnby4-May-04 0:34
Carnby4-May-04 0:34 
GeneralRe: How about... Pin
leppie4-May-04 6:53
leppie4-May-04 6:53 

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.