Click here to Skip to main content
15,895,782 members
Articles / Programming Languages / C#

NeoTabControl Library

Rate me:
Please Sign up or sign in to vote.
4.96/5 (110 votes)
28 Sep 2012CPOL16 min read 200.2K   21.3K   163  
A custom .NET tab control for WinForms applications with add-in renderer support.
using System;
using System.ComponentModel.Design;

namespace NeoTabControlLibrary.Design
{
    public class NeoTabPageCollectionEditor : CollectionEditor
    {
        #region Constructor

        public NeoTabPageCollectionEditor(Type type)
            : base(type) { }

        #endregion

        #region Destructor

        ~NeoTabPageCollectionEditor()
        {
            GC.SuppressFinalize(this);
        }

        #endregion

        #region Override Methods

        protected override Type CreateCollectionItemType()
        {
            return typeof(NeoTabPage);
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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) ARELTEK
Turkey Turkey
Since 1998...

MCPD - Enterprise Application Developer

“Hesaplı hareket ettiğini zanneden ve onunla iftihar eyliyen dar kafalar; kurtulmağa, yükselmeğe elverişli hiç bir eser vücüda getirmezler. Kurtuluş ve yükselişi, ancak varlığına dayanan ve mülkü milletin gizli kapalı hazinelerini verimli hale getirmesini bilen, şahsi menfaatini millet menfaati uğruna feda eden, ruhu idealist, dimağı realist şahsiyetlerde aramalıdır.”

Nuri Demirağ, 1947

Comments and Discussions