Click here to Skip to main content
15,868,440 members
Articles / Desktop Programming / Windows Forms
Tip/Trick

Determining which TabPage was clicked

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
7 Jan 2012CPOL1 min read 30.1K   6   6
A binary search technique to determine which TabPage of a TabControl was clicked
One of the many little WinForms applications I am working on has a TabControl with a variable number of TabPages (perhaps many). I want to allow the user to click and drag a tab to reorder the TabPages. A quick look at the documentation revealed nothing, and a quick search online revealed that this is a common problem.

The situation is that TabPages don't receive mouse events, the TabControl (their parent) does, then you have to use methods of the TabControl to determine which TabPage was clicked.

I glanced at two articles here on The Code Project to see how others had implemented this, and they provided a good starting point, but (being me) I came up with my own solution.

What I want is to get the index of a TabPage on MouseDown and again on MouseUp.
At first, I implemented a simple iterative search for the TabPage, but today I realized that a binary search technique would be better (at least with a great number of TabPages), so I changed it to:

private static int
GetTabIndexAt
(
  System.Windows.Forms.TabControl TabControl
,
  System.Drawing.Point            Point
)
{
  int result = -1 ;

  if ( TabControl != null )
  {
    int lo = 0 ;
    int hi = TabControl.TabPages.Count - 1 ;

    while ( ( result == -1 ) && ( lo <= hi ) )
    {
      int mid = lo + ( hi - lo ) / 2 ;
      System.Drawing.Rectangle rect = TabControl.GetTabRect ( mid ) ;

      if ( rect.Contains ( Point ) )
      {
        result = mid ;
      }
      else if ( ( Point.X < rect.Left ) || ( Point.Y < rect.Top ) )
      {
        hi = mid - 1 ;
      }
      else
      {
        lo = mid + 1 ;
      }
    }
  }

  return ( result ) ;
}


Edit: Added test of ( Point.Y < rect.Top ) to handle left-aligned tabs -- but it still only works with one row or columns of Tabs.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
BSCS 1992 Wentworth Institute of Technology

Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.

OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB, acknowledged pedant and contrarian

---------------

"I would be looking for better tekkies, too. Yours are broken." -- Paul Pedant

"Using fewer technologies is better than using more." -- Rico Mariani

"Good code is its own best documentation. As you’re about to add a comment, ask yourself, ‘How can I improve the code so that this comment isn’t needed?’" -- Steve McConnell

"Every time you write a comment, you should grimace and feel the failure of your ability of expression." -- Unknown

"If you need help knowing what to think, let me know and I'll tell you." -- Jeffrey Snover [MSFT]

"Typing is no substitute for thinking." -- R.W. Hamming

"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup

ZagNut’s Law: Arrogance is inversely proportional to ability.

"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon

"linq'ish" sounds like "inept" in German -- Andreas Gieriet

"Things would be different if I ran the zoo." -- Dr. Seuss

"Wrong is evil, and it must be defeated." –- Jeff Ello

"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw

“It’s always easier to do it the hard way.” -- Blackhart

“If Unix wasn’t so bad that you can’t give it away, Bill Gates would never have succeeded in selling Windows.” -- Blackhart

"Use vertical and horizontal whitespace generously. Generally, all binary operators except '.' and '->' should be separated from their operands by blanks."

"Omit needless local variables." -- Strunk... had he taught programming

Comments and Discussions

 
GeneralThe method fails if the TabControl.Multiline is set true and... Pin
Lutosław3-Jan-12 1:35
Lutosław3-Jan-12 1:35 
The method fails if the TabControl.Multiline is set true and tabs are wrapped. This is because your binary search assumes that (tab index) ~ (x coordinate), which is false when tabs are wrapped. I wonder if the binary search indeed noticably increases performance for such small data set as a number of tabs.
GeneralRe: Thanks, I didn't know there was such a thing. Pin
PIEBALDconsult3-Jan-12 2:50
mvePIEBALDconsult3-Jan-12 2:50 
GeneralRe: It also didn't work with System.Windows.Forms.TabAlignment.L... Pin
PIEBALDconsult4-Jan-12 14:52
mvePIEBALDconsult4-Jan-12 14:52 
GeneralHi, again completely OT, <a href="http://www.codeproject.com... Pin
thatraja10-Nov-11 18:11
professionalthatraja10-Nov-11 18:11 
GeneralSo, what happens if the click point is not in any of the rec... Pin
NeverJustHere8-Nov-11 16:59
NeverJustHere8-Nov-11 16:59 
GeneralRe: Basically, that never happens, but if you pass in a Point th... Pin
PIEBALDconsult8-Nov-11 17:23
mvePIEBALDconsult8-Nov-11 17:23 

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.