DarkUI.Net5/Example/Forms/Docking/DockProject.Designer.cs
Robin 8d49f8ce77 Fixed docking groups
Groups were being kept on scope because they weren't being removed from
the region's control array.
2015-09-19 13:16:44 +01:00

66 lines
2.3 KiB
C#

namespace Example
{
partial class DockProject
{
/// <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 Component 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()
{
this.treeProject = new DarkUI.DarkTreeView();
this.SuspendLayout();
//
// treeProject
//
this.treeProject.AllowMoveNodes = true;
this.treeProject.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeProject.Location = new System.Drawing.Point(0, 25);
this.treeProject.MultiSelect = true;
this.treeProject.Name = "treeProject";
this.treeProject.ShowIcons = true;
this.treeProject.Size = new System.Drawing.Size(280, 425);
this.treeProject.TabIndex = 0;
this.treeProject.Text = "darkTreeView1";
//
// DockProject
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.treeProject);
this.DockArea = DarkUI.DarkDockArea.Left;
this.DockText = "Project Explorer";
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = global::Example.Icons.application_16x;
this.Name = "DockProject";
this.Size = new System.Drawing.Size(280, 450);
this.ResumeLayout(false);
}
#endregion
private DarkUI.DarkTreeView treeProject;
}
}