c969-project/C969Project/Forms/CustomersForm.Designer.cs
2025-06-26 21:10:19 -05:00

101 lines
3.4 KiB
C#

using System.ComponentModel;
namespace C969Project;
partial class CustomersForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private 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 Windows Form 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()
{
CustomersDataGrid = new System.Windows.Forms.DataGridView();
AddButton = new System.Windows.Forms.Button();
ModifyButton = new System.Windows.Forms.Button();
DeleteButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)CustomersDataGrid).BeginInit();
SuspendLayout();
//
// CustomersDataGrid
//
CustomersDataGrid.AllowUserToAddRows = false;
CustomersDataGrid.AllowUserToDeleteRows = false;
CustomersDataGrid.AllowUserToOrderColumns = true;
CustomersDataGrid.Location = new System.Drawing.Point(12, 12);
CustomersDataGrid.Name = "CustomersDataGrid";
CustomersDataGrid.ReadOnly = true;
CustomersDataGrid.Size = new System.Drawing.Size(873, 430);
CustomersDataGrid.TabIndex = 0;
//
// AddButton
//
AddButton.Location = new System.Drawing.Point(12, 448);
AddButton.Name = "AddButton";
AddButton.Size = new System.Drawing.Size(75, 23);
AddButton.TabIndex = 1;
AddButton.Text = "Add";
AddButton.UseVisualStyleBackColor = true;
//
// ModifyButton
//
ModifyButton.Location = new System.Drawing.Point(93, 448);
ModifyButton.Name = "ModifyButton";
ModifyButton.Size = new System.Drawing.Size(75, 23);
ModifyButton.TabIndex = 2;
ModifyButton.Text = "Modify";
ModifyButton.UseVisualStyleBackColor = true;
//
// DeleteButton
//
DeleteButton.Location = new System.Drawing.Point(810, 448);
DeleteButton.Name = "DeleteButton";
DeleteButton.Size = new System.Drawing.Size(75, 23);
DeleteButton.TabIndex = 3;
DeleteButton.Text = "Delete";
DeleteButton.UseVisualStyleBackColor = true;
//
// RecordsForm
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(897, 569);
Controls.Add(DeleteButton);
Controls.Add(ModifyButton);
Controls.Add(AddButton);
Controls.Add(CustomersDataGrid);
Text = "Records";
((System.ComponentModel.ISupportInitialize)CustomersDataGrid).EndInit();
ResumeLayout(false);
}
private System.Windows.Forms.Button ModifyButton;
private System.Windows.Forms.Button DeleteButton;
private System.Windows.Forms.Button AddButton;
private System.Windows.Forms.DataGridView CustomersDataGrid;
#endregion
}