Click here to Skip to main content
15,878,748 members
Articles / Programming Languages / C#
Article

An Outlook-like Control

Rate me:
Please Sign up or sign in to vote.
2.43/5 (8 votes)
17 Sep 20073 min read 81.8K   2.7K   55   15
Creating a tab control with visual cues like the navigation panel control in Outlook

Introduction

This is a control that behaves like the tab control, but has visual cues that look more like the navigation panel in Outlook. Since this is more of a tab control than a navigation panel control, you are free to add as many tabs as you like. The control is made of a collection of tabs, where each tab has two drawing surfaces and an icon. The icon is used when a tab is not visible. Please note that this control is not thread-safe; I will make it thread-safe at some point. If you are interested in making it thread-safe, you will have to modify the Change theme code in all of the controls in the solution.

Screenshot - NavCtl.jpg

How to Use the Control

  1. Include the following DLLs in your project debug directory, or at least in a directory whose path is known to VS. Better yet, place them in the GAC:
    • AdrdCBC.dll
    • AdrdHDC.dll
    • AdrdNavigationThemes.dll
    • AdrdTBC.dll
    • HDCUserControl.dll
    • NavCtl.dll
    • OtherThemes.dll
  2. Set a reference to NavCtl.dll in your project.
  3. Add the control to your toolbox. To do this, right click on the toolbox and click "Choose Items."
  4. In the "Choose Toolbox Items" dialog box, click "Browse..." and find NavCtl.dll. Alternatively...
  5. Once selected, the controls AdrdNC and TabC will be added to your toolbox active tab.
  6. Drag and drop the control on any form.
  7. Now add a new user control to your project. This user control must visually inherit from the HDCControl as in the next two figures.
  8. Design your user control by adding other controls to it.
  9. In your code view of the containing form, create a locally scoped variable of type AdrdNavigationTabCollection. The following is a code example.
    C#
    public partial class Form1 : Form
    {
        AdrdNavigationTabCollection TabsCollection = 
            new AdrdNavigationTabCollection();
    
    }
  10. In the form Load event, create a variable of type AdrdNavigationTab.
    C#
    AdrdNavigationTab tab = new AdrdNavigationTab();
  11. Assign the user control you created in steps 7 and 8 to the AdrdNavigationTab variable HeaderControl and DetailControl properties.
    C#
    tab.HeaderControl = new YOURCONTROL();
    tab.DetailControl = new YOURCONTROL ();

    Note: replace "YOURCONTROL" with your user control name.

  12. Add the instant of AdrdNavigationTab you created in step 10 to the collection you created in step 9.
    C#
    TabsCollection.Add(tab);
  13. Assign the instant of the collection AdrdNavigationTabCollection to the AllTabsCollection property of the control.
    C#
    this.adrdNC1.AllTabsCollection = TabsCollection;
  14. (OPTIONAL) Create the OnTabAction and OnChildClick handlers.
    C#
    this.adrdNC1.OnTabAction += new TabActions(adrdNC1_OnTabAction);
    this.adrdNC1.OnChildClick += new 
    ChildControlWasClickedActions(adrdNC1_OnChildClick);

Important Steps

  1. Make sure all your user controls (tabs) inherit from HDCControl.
    C#
    public partial class YOURCONTROL : HDCUserControl.HDCControl
  2. To actually make the control pass values back and forth between the different surfaces and/or the containing form, always call the OnAction method of the HDCControl instant. For example, if you included a TreeView control on your HDCControl instant drawing surface and you want to update your containing form with the node text when the node selected is changed, you would do the following:
    • Call the OnAction method in the TreeView AfterSelection event handler like this:
      C#
      void tv_AfterSelect(object sender, 
          System.Windows.Forms.TreeViewEventArgs e)
      {
          OnAction(this, "Node selection Changed");
      }
    • In your container form, code the AdrdNC control OnTabAction event.
  3. OnTabAction will pass you the HDCControl control instant that raised the OnAction event and the AdrdNavigationTab item. So, you can have both drawing surfaces to the control and can cause changes on either of the drawing surfaces and/or the containing form.

The attached solution contains a "TestHarness" project that includes most of the implementations of the control. Also, there is a DOC directory in the attached solution that holds some documentation I started working on while developing the control. It's not complete, though.

History

  • 17 September, 2007 -- Original version posted
  • 26 September, 2007 -- Image added to article

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
Chief Technology Officer Time Warner Cable
United States United States
Adel has over 30 years of experience in planning, architecting, developing, and implementing state of the art information technology solutions involving SOA, Microservices, Blockchain, AI, REST, DCOM, CORBA, SSO, SAML, Low Latency, High availability, IoT, Embedded Systems, Robotics, SCADA, VOIP, and OSS Technologies. He is highly technical leader with extensive hands-on experiences that cover architecting, coding, and deployment of complex IT solutions and systems with a strong passion for “all things IT”. Adel Led large cross-functional teams with diverse technical backgrounds and designed and managed all the needed budget controls and deliverables. He is having strong knowledge of financial, medical/pharmaceutical, and industrial domains. He also is having strong Agile and CMMI processes experiences.
Mr. Eddin is known in the DevOps space as a leader in the development of DevOps operations and processes, continuous integration, continuous builds, source control, infrastructure build-outs, and cloud integrations on-premises and on the cloud.
In the last 15 years, Adel led number of large cloud technologies initiatives that that include public clouds (AZURE, AWS), private on-premises cloud (VMware vSphere), and Hybrid cloud implementations (VMware vSphere). He is also recognized as a leader in the security space. He demonstrated extensive knowledge in all aspects of IT security including, but not limited to physical security, coding security, P2PE, Ciphering, and Encryption with both hard (appliance or IOT based) and soft (software code based) implementations.
He has strong background in software development life cycle, software development management, infrastructure management, and IT software and hardware “build-outs”. He also managed multi-million-dollar IT projects that covered all corners of the globe using on-shore and off-shore resources and covering a wide range of the information technology spectrum.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Mukesh_B22-Jul-10 23:22
Mukesh_B22-Jul-10 23:22 
GeneralMy vote of 1 Pin
Bishoy Demian18-Dec-08 0:21
Bishoy Demian18-Dec-08 0:21 
GeneralHi Mr Adel Pin
ItalianCousin26-Nov-08 7:29
ItalianCousin26-Nov-08 7:29 
QuestionTreeview inside the header and details section of Navctrl Pin
AlwaysACreator17-Jun-08 5:04
AlwaysACreator17-Jun-08 5:04 
GeneralPerformance Pin
Patrick Etc.17-Sep-07 9:58
Patrick Etc.17-Sep-07 9:58 
GeneralRe: Performance Pin
Ed.Poore17-Sep-07 11:04
Ed.Poore17-Sep-07 11:04 
GeneralRe: Performance Pin
Patrick Etc.17-Sep-07 11:18
Patrick Etc.17-Sep-07 11:18 
GeneralRe: Performance Pin
Ed.Poore17-Sep-07 12:42
Ed.Poore17-Sep-07 12:42 
GeneralRe: Performance Pin
AdelArch17-Sep-07 14:58
professionalAdelArch17-Sep-07 14:58 
GeneralScreenshot would be nice Pin
Ed.Poore17-Sep-07 8:48
Ed.Poore17-Sep-07 8:48 
GeneralRe: Screenshot would be nice Pin
joaoalbertofn17-Sep-07 8:56
joaoalbertofn17-Sep-07 8:56 
GeneralRe: Screenshot would be nice Pin
Luke Searcy17-Sep-07 9:00
Luke Searcy17-Sep-07 9:00 
GeneralRe: Screenshot would be nice Pin
Patrick Etc.17-Sep-07 9:40
Patrick Etc.17-Sep-07 9:40 
JokeRe: Screenshot would be nice Pin
Grimolfr17-Sep-07 9:53
Grimolfr17-Sep-07 9:53 
GeneralRe: Screenshot would be nice Pin
AdelArch17-Sep-07 14:28
professionalAdelArch17-Sep-07 14:28 
All,
I apologize for the lengthy download but I included a word doc that I started writing and never actual finished. Also, the control is not thread safe.

Also, the idea behind the control is that you can add your own designed control surface and not just the surfaces that outlook offers. Again, think of this as a tab control.
Screenshots are available at the link below

http://www.adrdweb.com/anoutlooklikecontrolbyadeleddin.htm

Cheers

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.