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.
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
---------------
"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
"Omit needless local variables." -- Strunk... had he taught programming
"DON'T BE LIBERAL IN WHAT YOU ACCEPT!"
"Software Engineers don't have Trophy Wives; they have Presentation Layers."
"We learn more from our mistakes than we do from getting it right the first time."
"I'm an old dog and I like old tricks."
"Sometimes the envelope pushes back and sometimes you get a really nasty paper cut."
"A method shall have one and only one return statement."
My first rule of debugging: "If you get a different error message, you're making progress."
My golden rule of database management: "Do not unto others' databases as you would not have done unto yours."
My general rule of software development: "Design should be top-down, but implementation should be bottom-up."
"Today's heresy is tomorrow's dogma."
or
"Today's dogma is yesterday's heresy."