
Originally Posted by
JuggaloBrotha
Ok well I've finally had a chance to check this out and it's an awesome control. I would love to use this in an existing app in VS 2005, how hard would it be to do this without Linq and all that jazz?
Edit: I've also noticed that the Tabs collection doesn't show in the properties window, only in the Tasks thing
The Linq is easy to replace in it, just For Loops really.
The Tabs collection wasn't showing because for some reason I placed the Browsable(False) attribute over it. You can replace the Tabs property declaration with this:
vb.net Code:
Private _Tabs As SideTabCollection
<DesignerSerializationVisibility(DesignerSerializationVisibility.Content), Browsable(True)> _
Public ReadOnly Property Tabs() As SideTabCollection
Get
Me.Invalidate()
Return _Tabs
End Get
End Property
To get it to show.
I'm sure one day I'll eventually look at this control again and make it better.