public override void Initialize(System.ComponentModel.IComponent component)
 {
     base.Initialize(component);
     m_Control = ((NeonBaseList)(this.Control));
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(DiagramBrowserTab));
     this.baseList      = new Netron.Neon.NeonBaseList();
     this.browsePath    = new System.Windows.Forms.TextBox();
     this.browseButton  = new System.Windows.Forms.Button();
     this.SmallBig      = new System.Windows.Forms.Button();
     this.RefreshButton = new System.Windows.Forms.Button();
     this.toolTip1      = new System.Windows.Forms.ToolTip(this.components);
     this.SuspendLayout();
     //
     // baseList
     //
     this.baseList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.baseList.AutoScroll        = true;
     this.baseList.BackColor         = System.Drawing.Color.WhiteSmoke;
     this.baseList.BorderColor       = System.Drawing.Color.Black;
     this.baseList.BorderStyle       = System.Windows.Forms.ButtonBorderStyle.Solid;
     this.baseList.ControlSize       = new System.Drawing.Size(200, 200);
     this.baseList.Location          = new System.Drawing.Point(0, 64);
     this.baseList.Name              = "baseList";
     this.baseList.Size              = new System.Drawing.Size(500, 308);
     this.baseList.TabIndex          = 0;
     this.baseList.SelectionChanged += new Netron.Neon.NeonBaseList.SelectionChangedHandler(this.baseList_SelectionChanged);
     //
     // browsePath
     //
     this.browsePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.browsePath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.browsePath.Location    = new System.Drawing.Point(6, 10);
     this.browsePath.Name        = "browsePath";
     this.browsePath.Size        = new System.Drawing.Size(457, 21);
     this.browsePath.TabIndex    = 1;
     this.browsePath.Text        = "";
     this.toolTip1.SetToolTip(this.browsePath, "Press enter to load the given directory");
     this.browsePath.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.browsePath_KeyPress);
     //
     // browseButton
     //
     this.browseButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.browseButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.browseButton.Location  = new System.Drawing.Point(469, 10);
     this.browseButton.Name      = "browseButton";
     this.browseButton.Size      = new System.Drawing.Size(23, 20);
     this.browseButton.TabIndex  = 2;
     this.browseButton.Text      = "...";
     this.toolTip1.SetToolTip(this.browseButton, "Select a directory");
     this.browseButton.Click += new System.EventHandler(this.browseButton_Click);
     //
     // SmallBig
     //
     this.SmallBig.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.SmallBig.Image     = ((System.Drawing.Image)(resources.GetObject("SmallBig.Image")));
     this.SmallBig.Location  = new System.Drawing.Point(7, 38);
     this.SmallBig.Name      = "SmallBig";
     this.SmallBig.Size      = new System.Drawing.Size(23, 20);
     this.SmallBig.TabIndex  = 3;
     this.toolTip1.SetToolTip(this.SmallBig, "Small/big cards");
     this.SmallBig.Click += new System.EventHandler(this.SmallBig_Click);
     //
     // RefreshButton
     //
     this.RefreshButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.RefreshButton.Image     = ((System.Drawing.Image)(resources.GetObject("RefreshButton.Image")));
     this.RefreshButton.Location  = new System.Drawing.Point(38, 39);
     this.RefreshButton.Name      = "RefreshButton";
     this.RefreshButton.Size      = new System.Drawing.Size(23, 20);
     this.RefreshButton.TabIndex  = 4;
     this.toolTip1.SetToolTip(this.RefreshButton, "Refresh the view");
     this.RefreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
     //
     // DiagramBrowserTab
     //
     this.AccessibleDescription = "The diagram browser allows you to browse saved diagrams with ease. Click on the t" +
                                  "humbnail to open the diagram.";
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(500, 372);
     this.Controls.Add(this.RefreshButton);
     this.Controls.Add(this.SmallBig);
     this.Controls.Add(this.browseButton);
     this.Controls.Add(this.browsePath);
     this.Controls.Add(this.baseList);
     this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "DiagramBrowserTab";
     this.Text = "Diagram browser";
     this.ResumeLayout(false);
 }