Click here to Skip to main content
Click here to Skip to main content

Customize a panel with Autoscroll property

By , 2 May 2004
 

Introduction

This article show how to customize a 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:

  • public event System.Windows.Forms.ScrollEventHandler ScrollHorizontal: receive when the horizontal scroll bar move
  • public event System.Windows.Forms.ScrollEventHandler ScrollVertical: receive when the vertical scroll bar move
  • 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.

//
// 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:
[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:
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

About the Author

Manalee software
Web Developer
France France
Member
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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generallicensing issuememberjohnd123451 Apr '08 - 8:43 
GeneralThat's just what I need.memberlzy1564 Jan '08 - 21:15 
GeneralThank you.memberMuaddubby7 Dec '07 - 8:22 
QuestionThe VisibleAutoScrollHorizontal is ignored [modified]membertbenami13 Jun '07 - 6:13 
GeneralSynchronizing Scroll Panels...Works on some machines not others. [modified]memberSolution_007 Dec '06 - 6:15 
GeneralRe: Synchronizing Scroll Panels...Works on some machines not others.memberSolution_007 Dec '06 - 13:14 
GeneralDoesn't capture all scroll eventsmemberTimmers25 Sep '06 - 8:54 
GeneralAlways onmemberJimdango27 Jun '06 - 0:33 
GeneralDisposing the panelmemberpjhanb19 Apr '06 - 3:53 
GeneralKoolmemberkumagKayo7 Mar '06 - 23:49 
GeneralScrollbars look in a Win98-style under .NET Framework 2.0memberasm12312 Feb '06 - 13:06 
GeneralAnother approachmemberNetSpore9 Oct '05 - 7:09 
GeneralMouse whell Scrollmemberststeven16 Sep '05 - 11:00 
GeneralRe: Mouse whell Scrollmemberensrimad5 Jul '06 - 6:33 
GeneralA few bugs foundmembergdalgas29 Aug '05 - 7:37 
GeneralRe: A few bugs foundmemberCyrus the Virus20 Jul '08 - 0:01 
QuestionRe: A few bugs foundmemberDester3114 Apr '09 - 3:11 
GeneralAnother small bugmemberGaryZZZZZ27 Aug '05 - 14:40 
GeneralC++ code for this examplememberyy67821 Apr '05 - 9:44 
GeneralQuestionsussverylonguniquename23 Feb '05 - 3:40 
GeneralToo bad range doesn't work.memberkilroytrout7 Dec '04 - 9:10 
GeneralRe: Too bad range doesn't work.memberControl Vertex10 Oct '05 - 21:54 
GeneralRe: Fix for setting scroll positionmemberManalee software30 Sep '04 - 3:34 
GeneralRe: Fix for setting scroll positionmemberHolger Schmid20 Jun '05 - 20:39 
GeneralRe: Fix for setting scroll positionmemberannalady5 May '06 - 4:18 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 3 May 2004
Article Copyright 2004 by Manalee software
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid