117 lines
5.4 KiB
C#
117 lines
5.4 KiB
C#
namespace CarManagerV2
|
|
{
|
|
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));
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.lblCarDetails = new System.Windows.Forms.Label();
|
|
this.lblCarName = new System.Windows.Forms.Label();
|
|
this.pbxCar = new System.Windows.Forms.PictureBox();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pbxCar)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.AutoSize = true;
|
|
this.tableLayoutPanel1.ColumnCount = 1;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.tableLayoutPanel1.Controls.Add(this.lblCarDetails, 0, 2);
|
|
this.tableLayoutPanel1.Controls.Add(this.lblCarName, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.pbxCar, 0, 0);
|
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|
this.tableLayoutPanel1.MaximumSize = new System.Drawing.Size(210, 0);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 3;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 130F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(210, 200);
|
|
this.tableLayoutPanel1.TabIndex = 0;
|
|
//
|
|
// lblCarDetails
|
|
//
|
|
this.lblCarDetails.AutoSize = true;
|
|
this.lblCarDetails.Location = new System.Drawing.Point(3, 184);
|
|
this.lblCarDetails.Name = "lblCarDetails";
|
|
this.lblCarDetails.Size = new System.Drawing.Size(101, 16);
|
|
this.lblCarDetails.TabIndex = 5;
|
|
this.lblCarDetails.Text = "2009 - 13.000km";
|
|
//
|
|
// lblCarName
|
|
//
|
|
this.lblCarName.AutoSize = true;
|
|
this.lblCarName.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lblCarName.Font = new System.Drawing.Font("Arial", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lblCarName.Location = new System.Drawing.Point(3, 130);
|
|
this.lblCarName.Name = "lblCarName";
|
|
this.lblCarName.Size = new System.Drawing.Size(204, 54);
|
|
this.lblCarName.TabIndex = 4;
|
|
this.lblCarName.Text = "Skoda Fabia fdsdfsdfsdfsdf";
|
|
this.lblCarName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// pbxCar
|
|
//
|
|
this.pbxCar.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pbxCar.Image = ((System.Drawing.Image)(resources.GetObject("pbxCar.Image")));
|
|
this.pbxCar.ImageLocation = "";
|
|
this.pbxCar.Location = new System.Drawing.Point(3, 3);
|
|
this.pbxCar.Name = "pbxCar";
|
|
this.pbxCar.Size = new System.Drawing.Size(204, 124);
|
|
this.pbxCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
|
this.pbxCar.TabIndex = 3;
|
|
this.pbxCar.TabStop = false;
|
|
//
|
|
// CarCard
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.AutoSize = true;
|
|
this.BackColor = System.Drawing.SystemColors.Control;
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Name = "CarCard";
|
|
this.Size = new System.Drawing.Size(210, 200);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pbxCar)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.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;
|
|
}
|
|
}
|