GtaVUsersInfo/AddCars.Designer.cs

186 lines
8.2 KiB
C#

namespace GtaVUsersInfo
{
partial class AddCars
{
/// <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()
{
this.MainPanel = new System.Windows.Forms.Panel();
this.saveItem = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.panel1 = new System.Windows.Forms.Panel();
this.carPrice = new System.Windows.Forms.TextBox();
this.priceLabel = new System.Windows.Forms.Label();
this.separatopPanel1 = new System.Windows.Forms.Panel();
this.CarPanel = new System.Windows.Forms.Panel();
this.carComboBox = new System.Windows.Forms.ComboBox();
this.carLabel = new System.Windows.Forms.Label();
this.MainPanel.SuspendLayout();
this.panel1.SuspendLayout();
this.CarPanel.SuspendLayout();
this.SuspendLayout();
//
// MainPanel
//
this.MainPanel.Controls.Add(this.saveItem);
this.MainPanel.Controls.Add(this.panel2);
this.MainPanel.Controls.Add(this.panel1);
this.MainPanel.Controls.Add(this.separatopPanel1);
this.MainPanel.Controls.Add(this.CarPanel);
this.MainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainPanel.Location = new System.Drawing.Point(0, 0);
this.MainPanel.Name = "MainPanel";
this.MainPanel.Padding = new System.Windows.Forms.Padding(3);
this.MainPanel.Size = new System.Drawing.Size(254, 118);
this.MainPanel.TabIndex = 0;
//
// saveItem
//
this.saveItem.Dock = System.Windows.Forms.DockStyle.Right;
this.saveItem.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.saveItem.Location = new System.Drawing.Point(176, 90);
this.saveItem.Name = "saveItem";
this.saveItem.Size = new System.Drawing.Size(75, 25);
this.saveItem.TabIndex = 7;
this.saveItem.Text = "Сохранить";
this.saveItem.UseVisualStyleBackColor = true;
this.saveItem.Click += new System.EventHandler(this.saveItem_Click);
//
// panel2
//
this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
this.panel2.Location = new System.Drawing.Point(3, 80);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(248, 10);
this.panel2.TabIndex = 6;
//
// panel1
//
this.panel1.AutoSize = true;
this.panel1.Controls.Add(this.carPrice);
this.panel1.Controls.Add(this.priceLabel);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(3, 47);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(248, 33);
this.panel1.TabIndex = 5;
//
// carPrice
//
this.carPrice.Dock = System.Windows.Forms.DockStyle.Top;
this.carPrice.Location = new System.Drawing.Point(0, 13);
this.carPrice.Name = "carPrice";
this.carPrice.Size = new System.Drawing.Size(248, 20);
this.carPrice.TabIndex = 4;
this.carPrice.Enter += new System.EventHandler(this.carPrice_Enter);
this.carPrice.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.carPrice_KeyPress);
this.carPrice.Leave += new System.EventHandler(this.carPrice_Leave);
//
// priceLabel
//
this.priceLabel.AutoSize = true;
this.priceLabel.Dock = System.Windows.Forms.DockStyle.Top;
this.priceLabel.Location = new System.Drawing.Point(0, 0);
this.priceLabel.Name = "priceLabel";
this.priceLabel.Size = new System.Drawing.Size(36, 13);
this.priceLabel.TabIndex = 2;
this.priceLabel.Text = "Цена:";
//
// separatopPanel1
//
this.separatopPanel1.Dock = System.Windows.Forms.DockStyle.Top;
this.separatopPanel1.Location = new System.Drawing.Point(3, 37);
this.separatopPanel1.Name = "separatopPanel1";
this.separatopPanel1.Size = new System.Drawing.Size(248, 10);
this.separatopPanel1.TabIndex = 4;
//
// CarPanel
//
this.CarPanel.AutoSize = true;
this.CarPanel.Controls.Add(this.carComboBox);
this.CarPanel.Controls.Add(this.carLabel);
this.CarPanel.Dock = System.Windows.Forms.DockStyle.Top;
this.CarPanel.Location = new System.Drawing.Point(3, 3);
this.CarPanel.Name = "CarPanel";
this.CarPanel.Size = new System.Drawing.Size(248, 34);
this.CarPanel.TabIndex = 3;
//
// carComboBox
//
this.carComboBox.Dock = System.Windows.Forms.DockStyle.Top;
this.carComboBox.FormattingEnabled = true;
this.carComboBox.Location = new System.Drawing.Point(0, 13);
this.carComboBox.Name = "carComboBox";
this.carComboBox.Size = new System.Drawing.Size(248, 21);
this.carComboBox.TabIndex = 3;
this.carComboBox.SelectedIndexChanged += new System.EventHandler(this.carComboBox_SelectedIndexChanged);
//
// carLabel
//
this.carLabel.AutoSize = true;
this.carLabel.Dock = System.Windows.Forms.DockStyle.Top;
this.carLabel.Location = new System.Drawing.Point(0, 0);
this.carLabel.Name = "carLabel";
this.carLabel.Size = new System.Drawing.Size(72, 13);
this.carLabel.TabIndex = 2;
this.carLabel.Text = "Автомобиль:";
//
// AddCars
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(254, 118);
this.Controls.Add(this.MainPanel);
this.MaximumSize = new System.Drawing.Size(999999, 157);
this.MinimumSize = new System.Drawing.Size(270, 157);
this.Name = "AddCars";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Автомобиль";
this.MainPanel.ResumeLayout(false);
this.MainPanel.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.CarPanel.ResumeLayout(false);
this.CarPanel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel MainPanel;
private System.Windows.Forms.Panel CarPanel;
private System.Windows.Forms.ComboBox carComboBox;
private System.Windows.Forms.Label carLabel;
private System.Windows.Forms.Panel separatopPanel1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TextBox carPrice;
private System.Windows.Forms.Label priceLabel;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button saveItem;
}
}