Click here to Skip to main content
15,893,594 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.3K   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

 
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 
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 
Hi!

I just downloaded the code today, but it didn't have the SetDisplayRectLocation() methods in it, per your recommendation. I have a sub-classed RichTextBox that I'd like to add these properties to so that the scrollbar AND text scroll pixel by pixel. So...

In my sub-classed RichTextBox, I added the method, SetDisplayRectLocation(), and the properties as mentioned in the original message. Unfortuantely, it didn't work. Frown | :-(

Would someone be able to tell me what I did wrong here? Did I try to reference the wrong DLL or set up the signature for it incorrectly?

Thanks in advance!!!

-----------------------
[System.Runtime.InteropServices.DllImport("user32.dll")]
static public extern void SetDisplayRectLocation(int x, int y);


public int AutoScrollHPos
{
get { return GetScrollPos(this.Handle,
(int)SB_HORZ); }
set
{
SetScrollPos(this.Handle, (int)SB_HORZ, value, true);
SetDisplayRectLocation(-value, -DisplayRectangle.Y);
this.Refresh();
}
}

public int AutoScrollVPos
{
get { return GetScrollPos(this.Handle, (int)SB_VERT); }
set { SetScrollPos(this.Handle, (int)SB_VERT, value,
true);
SetDisplayRectLocation(-DisplayRectangle.X, -value);
this.Refresh();
}
}

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 
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 

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.