Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to program a Windows Form Application which has some pages. For this reason, I am using TabControl control which has some tabs, but i don't want to show tab switcher header, how can i hide or remove tab control header ? ( which we use it to switch between tabs )

I want to switch between tabs under conditions, for example if first tab has some text box, after filling out it, and pressing next button, second tab appears. ( But i don't want use tab switcher manually, and i want to hide it )

Thanks for your attention.

share|improve this question

7 Answers

up vote 2 down vote accepted

You can replace tabcontrol with a hand made panel that mimic like you want:

class MultyPagePanel : Panel
{
  private int _currentPageIndex;
  public int CurrentPageIndex
  {
    get { return _currentPageIndex; }
    set
    {
      if (value >= 0 && value < (Controls.Count - 1))
      {
        Controls[value].BringToFront();
        _currentPageIndex = value;
      }
    }
  }

  public void AddPage(Control page)
  {
    Controls.Add(page);
    page.Dock = DockStyle.Fill;
  }
}

And then add pages and set current visible page:

MultyPagePanel p;

// MyTabPage is a Control derived class that represents one page on your form.
MyTabPage page = new MyTabPage(); 
p.AddPage(page);

p.CurrentPageIndex = 0;
share|improve this answer
Good idea, thank you :) but you defined public void AddPage(Control Page) and you use p.AddPage() without argument. how should i do to solve it ?! – Hossein Mobasher Aug 5 '11 at 9:07
Sorry, Chrome messed up my code. Fixed the sample. – Flexible TreeView Team Aug 5 '11 at 19:44
Thank you very much :) – Hossein Mobasher Aug 5 '11 at 20:42

Add a new class to your project and paste the code shown below. Compile. Drop the new control from the top of the toolbox onto your form. It shows the tabs at design time so you can easily switch between them while designing. They are hidden at runtime, use the SelectedTab or SelectedIndex property in your code to switch the page.

using System;
using System.Windows.Forms;

class TablessControl : TabControl {
  protected override void WndProc(ref Message m) {
    // Hide tabs by trapping the TCM_ADJUSTRECT message
    if (m.Msg == 0x1328 && !DesignMode) m.Result = (IntPtr)1;
    else base.WndProc(ref m);
  }
}
share|improve this answer
Thanks for your opinion :) – Hossein Mobasher Aug 5 '11 at 10:53
4  
Erm, it's not an opinion. This works well on all Windows versions. – Hans Passant Aug 5 '11 at 10:57
Yes, i test it, it's a thing that i want :) Thanks :) – Hossein Mobasher Aug 5 '11 at 11:01
1  
Hi, could you update your code in the case where the left/right arrows disappear too? (They otherwise show when there are more tabs than can be contained by the StackPanel box). Thanks so much; being able to switch views like this on the fly is incredibly handy. – Dan W Jul 29 '12 at 22:11
Please edit your example from class TablessControl to public class TablessControl to make it show up in the Toolbox when using it from a different assembly. – Nebula Nov 29 '12 at 9:11
show 1 more comment

Hossein Mobasher, the following link is to an article I wrote explaining how you can achieve what you are trying to do.

Admittedly its written for VB.NET but the code isn't going to be very different.

Hope it helps

Creating multi panel interface easily

share|improve this answer
1  
Thanks for your answer :) i will try to code based on your article :) – Hossein Mobasher Aug 5 '11 at 8:57
Simplest solution to answer this question. Thanks! – Bobson Sep 12 '12 at 15:34

I was needing this code but in VB.net so I converted it. If someone needs this code in VB.Net there it is

Imports System
Imports System.Windows.Forms

Public Class TablessControl
           Inherits System.Windows.Forms.TabControl

    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
        ' Hide tabs by trapping the TCM_ADJUSTRECT message
        If (m.Msg = Convert.ToInt32("0x1328", 16) And Not DesignMode) Then
            m.Result = CType(1, IntPtr)
        Else
            MyBase.WndProc(m)
        End If
    End Sub

End Class

and thanks to @Hans Passant for the answer in C#

share|improve this answer

Create new UserControl, name it for example TabControlWithoutHeader and change inherited UserControl to TabControl and add some code. Result code should look like:

public partial class TabControlWithoutHeader: TabControl
{
    public TabControlWithoutHeader()
    {
        InitializeComponent();
    }

    protected override void WndProc(ref Message m)
    {
    if (m.Msg == 0x1328 && !DesignMode)
        m.Result = (IntPtr)1;
    else
        base.WndProc(ref m);
    }
}

After compile you will have TabControlWithoutHeader control in ToolBox. Drop it on form, in designer you will see headers, but at runtime they'll be hidden. If you want to hide them in designer remove && !DesugnMode code.

Hope that helps.

share|improve this answer
Thanks for your answer, it works very well :) – Hossein Mobasher Aug 5 '11 at 8:54
1  
Attribution is required at SO. – Hans Passant Aug 5 '11 at 11:05
@Hans sorry I cant understand what you wrote – Reniuz Aug 5 '11 at 11:21
Hans is saying he already posted this answer. You just copied it and posted it again. – Cody Gray Apr 24 at 6:29

If you really want to do this, yo can do something like this

 tcActionControls.Region = new Region(new RectangleF(
             tbPageToShow.Left, 
               tbPageToShow.Top, 
                 tbPageToShow.Width, 
                    tbPageToShow.Height)
);

Where tcActionControls is your TabControl and tbPageToShow is a TabPage to show in this precise moment.

Should work for you.

Regards.

share|improve this answer

What you need is the wizard interface, not a tab control :)

share|improve this answer
Yes, i want some thing like it, but my pages based on tab control component, i want to hide tab header. – Hossein Mobasher Aug 5 '11 at 8:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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