Inheritance: System.Windows.Forms.UserControl
Ejemplo n.º 1
0
        public Tab()
        {
            ConnectionPanel = new ConnectionPanel();
            ConnectionPanel.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
            ConnectionPanel.BorderStyle = BorderStyle.FixedSingle;
            ConnectionPanel.Width = this.Width;
            ConnectionPanel.Height = this.Height;

            this.Controls.Add(ConnectionPanel);
        }