Click here to Skip to main content
15,886,797 members
Articles / Desktop Programming / Windows Forms

Storm - the world's best IDE framework for .NET

Rate me:
Please Sign up or sign in to vote.
4.96/5 (82 votes)
4 Feb 2010LGPL311 min read 274.7K   6.5K   340  
Create fast, flexible, and extensible IDE applications easily with Storm - it takes nearly no code at all!
namespace Storm.Docking.Test
{
    partial class Form1
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
			Storm.Docking.Visual.Drawing.DockRenderer dockRenderer1 = new Storm.Docking.Visual.Drawing.DockRenderer();
			Storm.Docking.Visual.Drawing.DockColorTable dockColorTable1 = new Storm.Docking.Visual.Drawing.DockColorTable();
			this.dockPane = new Storm.Docking.DockPane();
			this.SuspendLayout();
			// 
			// dockPane
			// 
			this.dockPane.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(33)))), ((int)(((byte)(70)))));
			this.dockPane.Dock = System.Windows.Forms.DockStyle.Fill;
			this.dockPane.Font = new System.Drawing.Font("Segoe UI", 8F);
			this.dockPane.Location = new System.Drawing.Point(0, 0);
			this.dockPane.Name = "dockPane";
			dockRenderer1.DockColorTable = dockColorTable1;
			this.dockPane.Renderer = dockRenderer1;
			this.dockPane.Size = new System.Drawing.Size(292, 266);
			this.dockPane.TabIndex = 0;
			// 
			// Form1
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(292, 266);
			this.Controls.Add(this.dockPane);
			this.Name = "Form1";
			this.Text = "Form1";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.ResumeLayout(false);

        }

        #endregion

        private DockPane dockPane;
    }
}

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 GNU Lesser General Public License (LGPLv3)



Comments and Discussions