119 lines
5.3 KiB
C#
119 lines
5.3 KiB
C#
namespace CarManagerV3
|
|
{
|
|
partial class CarCard
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CarCard));
|
|
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
lblCarDetails = new System.Windows.Forms.Label();
|
|
lblCarName = new System.Windows.Forms.Label();
|
|
pbxCar = new System.Windows.Forms.PictureBox();
|
|
tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)pbxCar).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
tableLayoutPanel1.AutoSize = true;
|
|
tableLayoutPanel1.ColumnCount = 1;
|
|
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
tableLayoutPanel1.Controls.Add(lblCarDetails, 0, 2);
|
|
tableLayoutPanel1.Controls.Add(lblCarName, 0, 1);
|
|
tableLayoutPanel1.Controls.Add(pbxCar, 0, 0);
|
|
tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
tableLayoutPanel1.MaximumSize = new System.Drawing.Size(184, 0);
|
|
tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
tableLayoutPanel1.RowCount = 3;
|
|
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 122F));
|
|
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
tableLayoutPanel1.Size = new System.Drawing.Size(184, 188);
|
|
tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// lblCarDetails
|
|
//
|
|
lblCarDetails.AutoSize = true;
|
|
lblCarDetails.Location = new System.Drawing.Point(3, 166);
|
|
lblCarDetails.Name = "lblCarDetails";
|
|
lblCarDetails.Size = new System.Drawing.Size(92, 15);
|
|
lblCarDetails.TabIndex = 5;
|
|
lblCarDetails.Text = "2009 - 13.000km";
|
|
//
|
|
// lblCarName
|
|
//
|
|
lblCarName.AutoSize = true;
|
|
lblCarName.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
lblCarName.Font = new System.Drawing.Font("Arial", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
|
|
lblCarName.Location = new System.Drawing.Point(3, 122);
|
|
lblCarName.Name = "lblCarName";
|
|
lblCarName.Size = new System.Drawing.Size(178, 44);
|
|
lblCarName.TabIndex = 4;
|
|
lblCarName.Text = "Skoda Fabia fdsdfsdfsdfsdf";
|
|
lblCarName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// pbxCar
|
|
//
|
|
pbxCar.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
pbxCar.ErrorImage = (System.Drawing.Image)resources.GetObject("pbxCar.ErrorImage");
|
|
pbxCar.Image = (System.Drawing.Image)resources.GetObject("pbxCar.Image");
|
|
pbxCar.ImageLocation = "";
|
|
pbxCar.InitialImage = (System.Drawing.Image)resources.GetObject("pbxCar.InitialImage");
|
|
pbxCar.Location = new System.Drawing.Point(3, 3);
|
|
pbxCar.Name = "pbxCar";
|
|
pbxCar.Size = new System.Drawing.Size(178, 116);
|
|
pbxCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
pbxCar.TabIndex = 3;
|
|
pbxCar.TabStop = false;
|
|
//
|
|
// CarCard
|
|
//
|
|
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
AutoSize = true;
|
|
BackColor = System.Drawing.SystemColors.Control;
|
|
Controls.Add(tableLayoutPanel1);
|
|
Name = "CarCard";
|
|
Size = new System.Drawing.Size(184, 188);
|
|
tableLayoutPanel1.ResumeLayout(false);
|
|
tableLayoutPanel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)pbxCar).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label lblCarDetails;
|
|
private System.Windows.Forms.Label lblCarName;
|
|
private System.Windows.Forms.PictureBox pbxCar;
|
|
}
|
|
}
|