92 lines
3.8 KiB
C#
92 lines
3.8 KiB
C#
namespace GtaVUsersInfo.Controls
|
||
{
|
||
partial class ParameterControl
|
||
{
|
||
/// <summary>
|
||
/// Обязательная переменная конструктора.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Освободить все используемые ресурсы.
|
||
/// </summary>
|
||
/// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Код, автоматически созданный конструктором компонентов
|
||
|
||
/// <summary>
|
||
/// Требуемый метод для поддержки конструктора — не изменяйте
|
||
/// содержимое этого метода с помощью редактора кода.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.namePanel = new System.Windows.Forms.Panel();
|
||
this.Textbox = new System.Windows.Forms.TextBox();
|
||
this.Label = new System.Windows.Forms.Label();
|
||
this.namePanel.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// namePanel
|
||
//
|
||
this.namePanel.AutoSize = true;
|
||
this.namePanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
|
||
this.namePanel.Controls.Add(this.Textbox);
|
||
this.namePanel.Controls.Add(this.Label);
|
||
this.namePanel.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.namePanel.Location = new System.Drawing.Point(0, 0);
|
||
this.namePanel.Name = "namePanel";
|
||
this.namePanel.Padding = new System.Windows.Forms.Padding(2);
|
||
this.namePanel.Size = new System.Drawing.Size(150, 37);
|
||
this.namePanel.TabIndex = 2;
|
||
//
|
||
// Textbox
|
||
//
|
||
this.Textbox.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.Textbox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
|
||
this.Textbox.Location = new System.Drawing.Point(2, 15);
|
||
this.Textbox.Name = "Textbox";
|
||
this.Textbox.Size = new System.Drawing.Size(146, 20);
|
||
this.Textbox.TabIndex = 1;
|
||
this.Textbox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox_KeyPress);
|
||
//
|
||
// Label
|
||
//
|
||
this.Label.AutoSize = true;
|
||
this.Label.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.Label.Location = new System.Drawing.Point(2, 2);
|
||
this.Label.Name = "Label";
|
||
this.Label.Size = new System.Drawing.Size(32, 13);
|
||
this.Label.TabIndex = 0;
|
||
this.Label.Text = "Имя:";
|
||
//
|
||
// ParameterControl
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.AutoSize = true;
|
||
this.Controls.Add(this.namePanel);
|
||
this.Name = "ParameterControl";
|
||
this.Size = new System.Drawing.Size(150, 37);
|
||
this.namePanel.ResumeLayout(false);
|
||
this.namePanel.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Panel namePanel;
|
||
private System.Windows.Forms.TextBox Textbox;
|
||
private System.Windows.Forms.Label Label;
|
||
}
|
||
}
|