Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Subclassing a TabControl
Message
 
To
All
General information
Forum:
ASP.NET
Category:
Forms
Title:
Subclassing a TabControl
Miscellaneous
Thread ID:
00960845
Message ID:
00960845
Views:
71
I'm tring to subclass a TabControl control and add it to my toolbox, when i try to use it and add pages, i cannot access the pages, what am i doing wrong ?

Here's the code:
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Windows.Forms;


namespace Test.GUI
{

	[ToolboxBitmap(typeof(TabControl))]
	[DesignerAttribute(typeof(System.Windows.Forms.Design.ControlDesigner))]	
	public class _TabControl : System.Windows.Forms.TabControl 
	{
		private System.ComponentModel.Container components = null;

		public _TabControl()
		{
			InitializeComponent();
		}
		private void InitializeComponent()
		{
			System.ComponentModel.Container components = new Container();
		}
	
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if( components != null )
					components.Dispose();
			}
			base.Dispose( disposing );
		}
	}
}
Next
Reply
Map
View

Click here to load this message in the networking platform