2024-10-08 09:53:24 +03:00
namespace GtaVUsersInfo.Controls
{
2024-10-08 15:14:10 +03:00
partial class CarControl
2024-10-08 09:53:24 +03:00
{
/// <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 . components = new System . ComponentModel . Container ( ) ;
2024-10-08 11:44:50 +03:00
this . MainPanel = new System . Windows . Forms . Panel ( ) ;
this . PhotoPanel = new System . Windows . Forms . Panel ( ) ;
2024-10-08 09:53:24 +03:00
this . PhotoBox = new System . Windows . Forms . PictureBox ( ) ;
2024-10-08 11:44:50 +03:00
this . MoneyPanel = new System . Windows . Forms . Panel ( ) ;
2024-10-08 09:53:24 +03:00
this . MoneyTextBox = new System . Windows . Forms . TextBox ( ) ;
this . MoneyLabel = new System . Windows . Forms . Label ( ) ;
2024-10-08 11:44:50 +03:00
this . ClassPanel = new System . Windows . Forms . Panel ( ) ;
2024-10-08 14:41:32 +03:00
this . ClassTextBox = new System . Windows . Forms . TextBox ( ) ;
2024-10-08 09:53:24 +03:00
this . ClassLabel = new System . Windows . Forms . Label ( ) ;
2024-10-08 11:44:50 +03:00
this . NamePanel = new System . Windows . Forms . Panel ( ) ;
2024-10-08 09:53:24 +03:00
this . ManufacturerLabel = new System . Windows . Forms . Label ( ) ;
this . NameLabel = new System . Windows . Forms . Label ( ) ;
2024-10-08 11:44:50 +03:00
this . ModelPanel = new System . Windows . Forms . Panel ( ) ;
2024-10-08 14:41:32 +03:00
this . ModelTextBox = new System . Windows . Forms . TextBox ( ) ;
2024-10-08 09:53:24 +03:00
this . ModelLabel = new System . Windows . Forms . Label ( ) ;
this . contextMenuStrip1 = new System . Windows . Forms . ContextMenuStrip ( this . components ) ;
2024-10-08 11:44:50 +03:00
this . MainPanel . SuspendLayout ( ) ;
this . PhotoPanel . SuspendLayout ( ) ;
2024-10-08 09:53:24 +03:00
( ( System . ComponentModel . ISupportInitialize ) ( this . PhotoBox ) ) . BeginInit ( ) ;
2024-10-08 11:44:50 +03:00
this . MoneyPanel . SuspendLayout ( ) ;
this . ClassPanel . SuspendLayout ( ) ;
this . NamePanel . SuspendLayout ( ) ;
this . ModelPanel . SuspendLayout ( ) ;
2024-10-08 09:53:24 +03:00
this . SuspendLayout ( ) ;
//
2024-10-08 11:44:50 +03:00
// MainPanel
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
this . MainPanel . Controls . Add ( this . PhotoPanel ) ;
this . MainPanel . Controls . Add ( this . MoneyPanel ) ;
this . MainPanel . Controls . Add ( this . ClassPanel ) ;
this . MainPanel . Controls . Add ( this . NamePanel ) ;
this . MainPanel . Controls . Add ( this . ModelPanel ) ;
this . MainPanel . Dock = System . Windows . Forms . DockStyle . Fill ;
this . MainPanel . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . MainPanel . Name = "MainPanel" ;
this . MainPanel . Size = new System . Drawing . Size ( 210 , 204 ) ;
this . MainPanel . TabIndex = 0 ;
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
// PhotoPanel
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
this . PhotoPanel . Controls . Add ( this . PhotoBox ) ;
this . PhotoPanel . Dock = System . Windows . Forms . DockStyle . Fill ;
this . PhotoPanel . Location = new System . Drawing . Point ( 0 , 18 ) ;
this . PhotoPanel . Name = "PhotoPanel" ;
this . PhotoPanel . Size = new System . Drawing . Size ( 210 , 135 ) ;
this . PhotoPanel . TabIndex = 4 ;
2024-10-08 09:53:24 +03:00
//
// PhotoBox
//
this . PhotoBox . Dock = System . Windows . Forms . DockStyle . Fill ;
this . PhotoBox . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . PhotoBox . Name = "PhotoBox" ;
2024-10-08 11:44:50 +03:00
this . PhotoBox . Size = new System . Drawing . Size ( 210 , 135 ) ;
2024-10-08 09:53:24 +03:00
this . PhotoBox . SizeMode = System . Windows . Forms . PictureBoxSizeMode . Zoom ;
this . PhotoBox . TabIndex = 0 ;
this . PhotoBox . TabStop = false ;
//
2024-10-08 11:44:50 +03:00
// MoneyPanel
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
this . MoneyPanel . AutoSize = true ;
this . MoneyPanel . AutoSizeMode = System . Windows . Forms . AutoSizeMode . GrowAndShrink ;
this . MoneyPanel . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . MoneyPanel . Controls . Add ( this . MoneyTextBox ) ;
this . MoneyPanel . Controls . Add ( this . MoneyLabel ) ;
this . MoneyPanel . Dock = System . Windows . Forms . DockStyle . Bottom ;
this . MoneyPanel . Location = new System . Drawing . Point ( 0 , 153 ) ;
this . MoneyPanel . Name = "MoneyPanel" ;
this . MoneyPanel . Size = new System . Drawing . Size ( 210 , 17 ) ;
this . MoneyPanel . TabIndex = 3 ;
2024-10-08 09:53:24 +03:00
//
// MoneyTextBox
//
2024-10-08 11:44:50 +03:00
this . MoneyTextBox . BorderStyle = System . Windows . Forms . BorderStyle . None ;
2024-10-08 09:53:24 +03:00
this . MoneyTextBox . Dock = System . Windows . Forms . DockStyle . Top ;
2024-10-08 11:44:50 +03:00
this . MoneyTextBox . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . MoneyTextBox . Location = new System . Drawing . Point ( 56 , 0 ) ;
2024-10-08 09:53:24 +03:00
this . MoneyTextBox . Name = "MoneyTextBox" ;
2024-10-08 11:44:50 +03:00
this . MoneyTextBox . Size = new System . Drawing . Size ( 152 , 15 ) ;
2024-10-08 09:53:24 +03:00
this . MoneyTextBox . TabIndex = 1 ;
this . MoneyTextBox . Enter + = new System . EventHandler ( this . carPrice_Enter ) ;
this . MoneyTextBox . KeyPress + = new System . Windows . Forms . KeyPressEventHandler ( this . carPrice_KeyPress ) ;
this . MoneyTextBox . Leave + = new System . EventHandler ( this . carPrice_Leave ) ;
//
// MoneyLabel
//
this . MoneyLabel . AutoSize = true ;
2024-10-08 11:44:50 +03:00
this . MoneyLabel . Dock = System . Windows . Forms . DockStyle . Left ;
this . MoneyLabel . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
2024-10-08 09:53:24 +03:00
this . MoneyLabel . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . MoneyLabel . Name = "MoneyLabel" ;
2024-10-08 11:44:50 +03:00
this . MoneyLabel . Size = new System . Drawing . Size ( 56 , 16 ) ;
2024-10-08 09:53:24 +03:00
this . MoneyLabel . TabIndex = 0 ;
this . MoneyLabel . Text = "Деньги:" ;
//
2024-10-08 11:44:50 +03:00
// ClassPanel
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
this . ClassPanel . AutoSize = true ;
this . ClassPanel . AutoSizeMode = System . Windows . Forms . AutoSizeMode . GrowAndShrink ;
this . ClassPanel . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . ClassPanel . Controls . Add ( this . ClassTextBox ) ;
this . ClassPanel . Controls . Add ( this . ClassLabel ) ;
this . ClassPanel . Dock = System . Windows . Forms . DockStyle . Bottom ;
this . ClassPanel . Location = new System . Drawing . Point ( 0 , 170 ) ;
this . ClassPanel . Name = "ClassPanel" ;
this . ClassPanel . Size = new System . Drawing . Size ( 210 , 17 ) ;
this . ClassPanel . TabIndex = 2 ;
2024-10-08 09:53:24 +03:00
//
2024-10-08 14:41:32 +03:00
// ClassTextBox
//
this . ClassTextBox . BackColor = System . Drawing . Color . White ;
this . ClassTextBox . BorderStyle = System . Windows . Forms . BorderStyle . None ;
this . ClassTextBox . Dock = System . Windows . Forms . DockStyle . Top ;
this . ClassTextBox . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . ClassTextBox . Location = new System . Drawing . Point ( 48 , 0 ) ;
this . ClassTextBox . Name = "ClassTextBox" ;
this . ClassTextBox . ReadOnly = true ;
this . ClassTextBox . Size = new System . Drawing . Size ( 160 , 15 ) ;
this . ClassTextBox . TabIndex = 3 ;
//
2024-10-08 09:53:24 +03:00
// ClassLabel
//
this . ClassLabel . AutoSize = true ;
2024-10-08 11:44:50 +03:00
this . ClassLabel . Dock = System . Windows . Forms . DockStyle . Left ;
this . ClassLabel . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
2024-10-08 09:53:24 +03:00
this . ClassLabel . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . ClassLabel . Name = "ClassLabel" ;
2024-10-08 11:44:50 +03:00
this . ClassLabel . Size = new System . Drawing . Size ( 48 , 16 ) ;
2024-10-08 09:53:24 +03:00
this . ClassLabel . TabIndex = 0 ;
2024-10-08 11:44:50 +03:00
this . ClassLabel . Text = "Класс:" ;
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
// NamePanel
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
this . NamePanel . AutoSize = true ;
this . NamePanel . AutoSizeMode = System . Windows . Forms . AutoSizeMode . GrowAndShrink ;
this . NamePanel . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . NamePanel . Controls . Add ( this . ManufacturerLabel ) ;
this . NamePanel . Controls . Add ( this . NameLabel ) ;
this . NamePanel . Dock = System . Windows . Forms . DockStyle . Top ;
this . NamePanel . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . NamePanel . Name = "NamePanel" ;
this . NamePanel . Size = new System . Drawing . Size ( 210 , 18 ) ;
this . NamePanel . TabIndex = 1 ;
2024-10-08 09:53:24 +03:00
//
// ManufacturerLabel
//
this . ManufacturerLabel . AutoSize = true ;
this . ManufacturerLabel . Dock = System . Windows . Forms . DockStyle . Right ;
2024-10-08 11:44:50 +03:00
this . ManufacturerLabel . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . ManufacturerLabel . Location = new System . Drawing . Point ( 159 , 0 ) ;
2024-10-08 09:53:24 +03:00
this . ManufacturerLabel . Name = "ManufacturerLabel" ;
2024-10-08 11:44:50 +03:00
this . ManufacturerLabel . Size = new System . Drawing . Size ( 49 , 16 ) ;
2024-10-08 09:53:24 +03:00
this . ManufacturerLabel . TabIndex = 1 ;
2024-10-08 11:44:50 +03:00
this . ManufacturerLabel . Text = "Марка" ;
2024-10-08 09:53:24 +03:00
//
// NameLabel
//
this . NameLabel . AutoSize = true ;
this . NameLabel . Dock = System . Windows . Forms . DockStyle . Fill ;
2024-10-08 11:44:50 +03:00
this . NameLabel . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
2024-10-08 09:53:24 +03:00
this . NameLabel . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . NameLabel . Name = "NameLabel" ;
2024-10-08 11:44:50 +03:00
this . NameLabel . Size = new System . Drawing . Size ( 73 , 16 ) ;
2024-10-08 09:53:24 +03:00
this . NameLabel . TabIndex = 0 ;
2024-10-08 11:44:50 +03:00
this . NameLabel . Text = "Название" ;
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
// ModelPanel
2024-10-08 09:53:24 +03:00
//
2024-10-08 11:44:50 +03:00
this . ModelPanel . AutoSize = true ;
this . ModelPanel . AutoSizeMode = System . Windows . Forms . AutoSizeMode . GrowAndShrink ;
this . ModelPanel . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . ModelPanel . Controls . Add ( this . ModelTextBox ) ;
this . ModelPanel . Controls . Add ( this . ModelLabel ) ;
this . ModelPanel . Dock = System . Windows . Forms . DockStyle . Bottom ;
this . ModelPanel . Location = new System . Drawing . Point ( 0 , 187 ) ;
this . ModelPanel . Name = "ModelPanel" ;
this . ModelPanel . Size = new System . Drawing . Size ( 210 , 17 ) ;
this . ModelPanel . TabIndex = 0 ;
2024-10-08 09:53:24 +03:00
//
2024-10-08 14:41:32 +03:00
// ModelTextBox
//
this . ModelTextBox . BackColor = System . Drawing . Color . White ;
this . ModelTextBox . BorderStyle = System . Windows . Forms . BorderStyle . None ;
this . ModelTextBox . Dock = System . Windows . Forms . DockStyle . Top ;
this . ModelTextBox . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
this . ModelTextBox . Location = new System . Drawing . Point ( 60 , 0 ) ;
this . ModelTextBox . Name = "ModelTextBox" ;
this . ModelTextBox . ReadOnly = true ;
this . ModelTextBox . Size = new System . Drawing . Size ( 148 , 15 ) ;
this . ModelTextBox . TabIndex = 2 ;
//
2024-10-08 09:53:24 +03:00
// ModelLabel
//
this . ModelLabel . AutoSize = true ;
2024-10-08 11:44:50 +03:00
this . ModelLabel . Dock = System . Windows . Forms . DockStyle . Left ;
this . ModelLabel . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 204 ) ) ) ;
2024-10-08 09:53:24 +03:00
this . ModelLabel . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . ModelLabel . Name = "ModelLabel" ;
2024-10-08 11:44:50 +03:00
this . ModelLabel . Size = new System . Drawing . Size ( 60 , 16 ) ;
2024-10-08 09:53:24 +03:00
this . ModelLabel . TabIndex = 0 ;
2024-10-08 11:44:50 +03:00
this . ModelLabel . Text = "Модель:" ;
2024-10-08 09:53:24 +03:00
//
// contextMenuStrip1
//
this . contextMenuStrip1 . Name = "contextMenuStrip1" ;
this . contextMenuStrip1 . Size = new System . Drawing . Size ( 61 , 4 ) ;
//
2024-10-08 18:33:19 +03:00
// CarControl
2024-10-08 09:53:24 +03:00
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . BackColor = System . Drawing . Color . White ;
2024-10-08 11:44:50 +03:00
this . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
this . Controls . Add ( this . MainPanel ) ;
2024-10-08 18:33:19 +03:00
this . Name = "CarControl" ;
2024-10-08 11:44:50 +03:00
this . Size = new System . Drawing . Size ( 210 , 204 ) ;
this . MainPanel . ResumeLayout ( false ) ;
this . MainPanel . PerformLayout ( ) ;
this . PhotoPanel . ResumeLayout ( false ) ;
2024-10-08 09:53:24 +03:00
( ( System . ComponentModel . ISupportInitialize ) ( this . PhotoBox ) ) . EndInit ( ) ;
2024-10-08 11:44:50 +03:00
this . MoneyPanel . ResumeLayout ( false ) ;
this . MoneyPanel . PerformLayout ( ) ;
this . ClassPanel . ResumeLayout ( false ) ;
this . ClassPanel . PerformLayout ( ) ;
this . NamePanel . ResumeLayout ( false ) ;
this . NamePanel . PerformLayout ( ) ;
this . ModelPanel . ResumeLayout ( false ) ;
this . ModelPanel . PerformLayout ( ) ;
2024-10-08 09:53:24 +03:00
this . ResumeLayout ( false ) ;
}
#endregion
2024-10-08 11:44:50 +03:00
private System . Windows . Forms . Panel MainPanel ;
private System . Windows . Forms . Panel MoneyPanel ;
2024-10-08 09:53:24 +03:00
private System . Windows . Forms . Label MoneyLabel ;
2024-10-08 11:44:50 +03:00
private System . Windows . Forms . Panel ClassPanel ;
2024-10-08 09:53:24 +03:00
private System . Windows . Forms . Label ClassLabel ;
2024-10-08 11:44:50 +03:00
private System . Windows . Forms . Panel NamePanel ;
2024-10-08 09:53:24 +03:00
private System . Windows . Forms . Label NameLabel ;
2024-10-08 11:44:50 +03:00
private System . Windows . Forms . Panel ModelPanel ;
2024-10-08 09:53:24 +03:00
private System . Windows . Forms . Label ModelLabel ;
2024-10-08 11:44:50 +03:00
private System . Windows . Forms . Panel PhotoPanel ;
2024-10-08 09:53:24 +03:00
private System . Windows . Forms . PictureBox PhotoBox ;
private System . Windows . Forms . Label ManufacturerLabel ;
private System . Windows . Forms . TextBox MoneyTextBox ;
private System . Windows . Forms . ContextMenuStrip contextMenuStrip1 ;
2024-10-08 11:44:50 +03:00
private System . Windows . Forms . TextBox ModelTextBox ;
private System . Windows . Forms . TextBox ClassTextBox ;
2024-10-08 09:53:24 +03:00
}
}