vote up 3 vote down star
2

Is there any easy (5 lines of code) way to do this?

flag

2 Answers

vote up 9 vote down check

The shortest code to delete the tab the middle mouse button was clicked on is by using LINQ.

Make sure the event is wired up
this.tabControl1.MouseClick += tabControl1_MouseClick;
And for the handler itself
private void tabControl1_MouseClick(object sender, MouseEventArgs e)
{
  var tabControl = sender as TabControl;
  var tabs = tabControl.TabPages;

  if (e.Button == MouseButtons.Middle)
  {
    tabs.Remove(tabs.Cast<TabPage>()
            .Where((t, i) => tabControl.GetTabRect(i).Contains(e.Location))
            .First());
  }
}
And if you are striving for least amount of lines, here it is in one line
tabControl1.MouseClick += delegate(object sender, MouseEventArgs e) { var tabControl = sender as TabControl; var tabs = tabControl.TabPages; if (e.Button == MouseButtons.Middle) { tabs.Remove(tabs.Cast<TabPage>().Where((t, i) => tabControl.GetTabRect(i).Contains(e.Location)).First()); } };
link|flag
That's just beautiful code... – Mladen Mihajlovic Apr 13 at 20:59
Now you're just showing off :) Brilliant man, thanks. – Mladen Mihajlovic Apr 13 at 21:24
vote up 0 vote down

You could do this:

private void tabControl1_MouseClick(object sender, MouseEventArgs e)
{
     if (e.Button == MouseButtons.Middle)
     {
          // choose tabpage to delete like below
          tabControl1.TabPages.Remove(tabControl1.TabPages[0]);
     }
}

Basically you are just catching a mouse click on tab control and only deleting a page if the middle button was clicked.

link|flag
This won't close the tab that was clicked on. This would drive me insane if it deleted the first one no matter which one I clicked. – Samuel Apr 13 at 20:50
Well you would change it to select whatever tab you wanted to get rid off. – ryanulit Apr 14 at 14:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.