Click here to Skip to main content
15,887,822 members
Articles / Programming Languages / C#

Visual Studio IDE like Dock Container

Rate me:
Please Sign up or sign in to vote.
4.38/5 (41 votes)
14 May 2009Public Domain2 min read 376.3K   21.4K   256  
Free Windows dock container
/***************************************************************************
 *   CopyRight (C) 2008 by SC Crom-Osec SRL                                *
 *   Contact:  contact@osec.ro                                             *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the Crom Free License as published by           *
 *   the SC Crom-Osec SRL; version 1 of the License                        *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   Crom Free License for more details.                                   *
 *                                                                         *
 *   You should have received a copy of the Crom Free License along with   *
 *   this program; if not, write to the contact@osec.ro                    *
 ***************************************************************************/

namespace Crom.Controls
{
   partial class CenterButtonToDockFill
   {
      #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 ()
      {
         System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager (typeof (CenterButtonToDockFill));
         this._fillImage = new System.Windows.Forms.PictureBox ();
         ((System.ComponentModel.ISupportInitialize)(this._fillImage)).BeginInit ();
         this.SuspendLayout ();
         // 
         // _fillImage
         // 
         this._fillImage.Image = ((System.Drawing.Image)(resources.GetObject ("_fillImage.Image")));
         this._fillImage.Location = new System.Drawing.Point (9, 9);
         this._fillImage.Name = "_fillImage";
         this._fillImage.Size = new System.Drawing.Size (24, 24);
         this._fillImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
         this._fillImage.TabIndex = 0;
         this._fillImage.TabStop = false;
         // 
         // CenterButtonToDockFill
         // 
         this.BackColor = System.Drawing.Color.FromArgb (((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
         this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject ("$this.BackgroundImage")));
         this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
         this.ClientSize = new System.Drawing.Size (42, 42);
         this.Controls.Add (this._fillImage);
         ((System.ComponentModel.ISupportInitialize)(this._fillImage)).EndInit ();
         this.ResumeLayout (false);
         this.PerformLayout ();

      }

      #endregion

      private System.Windows.Forms.PictureBox _fillImage;
   }
}

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 A Public Domain dedication


Written By
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions