61 lines
1.6 KiB
C#
61 lines
1.6 KiB
C#
|
namespace WinForms
|
|||
|
{
|
|||
|
partial class FormMain
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
myTreeView1 = new VisableComponents.MyTreeView();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// myTreeView1
|
|||
|
//
|
|||
|
myTreeView1.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|||
|
myTreeView1.BackColor = SystemColors.ControlDark;
|
|||
|
myTreeView1.Location = new Point(12, 27);
|
|||
|
myTreeView1.Margin = new Padding(3, 4, 3, 4);
|
|||
|
myTreeView1.MinimumSize = new Size(200, 200);
|
|||
|
myTreeView1.Name = "myTreeView1";
|
|||
|
myTreeView1.Size = new Size(780, 406);
|
|||
|
myTreeView1.TabIndex = 0;
|
|||
|
//
|
|||
|
// FormMain
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(myTreeView1);
|
|||
|
Name = "FormMain";
|
|||
|
Text = "Учет клиентов";
|
|||
|
Load += FormMain_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private VisableComponents.MyTreeView myTreeView1;
|
|||
|
}
|
|||
|
}
|