Add project files.

This commit is contained in:
Frozd
2025-09-17 13:17:09 +02:00
parent 440e5a1b2b
commit 3561193b2f
22 changed files with 18541 additions and 0 deletions

94
CarManagerV2/CarCard.Designer.cs generated Normal file
View File

@@ -0,0 +1,94 @@
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.pbxCar = new System.Windows.Forms.PictureBox();
this.lblCarName = new System.Windows.Forms.Label();
this.lblCarDetails = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pbxCar)).BeginInit();
this.SuspendLayout();
//
// pbxCar
//
this.pbxCar.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
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, 130);
this.pbxCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbxCar.TabIndex = 0;
this.pbxCar.TabStop = false;
//
// lblCarName
//
this.lblCarName.AutoSize = true;
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, 136);
this.lblCarName.Name = "lblCarName";
this.lblCarName.Size = new System.Drawing.Size(148, 27);
this.lblCarName.TabIndex = 1;
this.lblCarName.Text = "Skoda Fabia";
//
// lblCarDetails
//
this.lblCarDetails.AutoSize = true;
this.lblCarDetails.Location = new System.Drawing.Point(5, 163);
this.lblCarDetails.Name = "lblCarDetails";
this.lblCarDetails.Size = new System.Drawing.Size(101, 16);
this.lblCarDetails.TabIndex = 2;
this.lblCarDetails.Text = "2009 - 13.000km";
//
// CarCard
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.Controls.Add(this.lblCarDetails);
this.Controls.Add(this.lblCarName);
this.Controls.Add(this.pbxCar);
this.Name = "CarCard";
this.Size = new System.Drawing.Size(210, 192);
this.Load += new System.EventHandler(this.CarCard_Load);
((System.ComponentModel.ISupportInitialize)(this.pbxCar)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbxCar;
private System.Windows.Forms.Label lblCarName;
private System.Windows.Forms.Label lblCarDetails;
}
}