Click here to Skip to main content
15,891,840 members
Articles / Desktop Programming / Windows Forms

MS Office-like TaskPane Control

Rate me:
Please Sign up or sign in to vote.
4.85/5 (25 votes)
24 Apr 2007CPOL10 min read 128.9K   8.4K   262  
A .NET TaskPane control, with full design-time support.
Public Class MdiTabStripTabEventArgs
    Inherits EventArgs

    Private _tab As MdiTab

    Public Sub New(ByVal tabItem As MdiTab)
        Me._tab = tabItem
    End Sub

    Public ReadOnly Property MdiTab() As MdiTab
        Get
            Return _tab
        End Get
    End Property

End Class

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 Microsoft
United States United States
I did some stuff.. I live in Seattle.. now I work for Live Search at Microsoft Smile | :)

Comments and Discussions