112 lines
4.0 KiB
C#
112 lines
4.0 KiB
C#
namespace LDBproject.AdditionalForms
|
|
{
|
|
partial class OrdersF
|
|
{
|
|
/// <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 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()
|
|
{
|
|
panel1 = new Panel();
|
|
DelBtn = new Button();
|
|
AddBtn = new Button();
|
|
DataGV = new DataGridView();
|
|
panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)DataGV).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.BackColor = Color.Transparent;
|
|
panel1.Controls.Add(DelBtn);
|
|
panel1.Controls.Add(AddBtn);
|
|
panel1.Dock = DockStyle.Right;
|
|
panel1.Location = new Point(430, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(246, 364);
|
|
panel1.TabIndex = 4;
|
|
//
|
|
// DelBtn
|
|
//
|
|
DelBtn.BackColor = Color.DarkSlateBlue;
|
|
DelBtn.BackgroundImage = Properties.Resources.DelImg;
|
|
DelBtn.BackgroundImageLayout = ImageLayout.Stretch;
|
|
DelBtn.ForeColor = Color.Transparent;
|
|
DelBtn.Location = new Point(129, 34);
|
|
DelBtn.Name = "DelBtn";
|
|
DelBtn.Size = new Size(78, 71);
|
|
DelBtn.TabIndex = 6;
|
|
DelBtn.UseVisualStyleBackColor = false;
|
|
DelBtn.Click += DelBtn_Click;
|
|
//
|
|
// AddBtn
|
|
//
|
|
AddBtn.BackColor = Color.DarkSlateBlue;
|
|
AddBtn.BackgroundImage = Properties.Resources.AddImg;
|
|
AddBtn.BackgroundImageLayout = ImageLayout.Stretch;
|
|
AddBtn.ForeColor = Color.Transparent;
|
|
AddBtn.Location = new Point(24, 34);
|
|
AddBtn.Name = "AddBtn";
|
|
AddBtn.Size = new Size(78, 71);
|
|
AddBtn.TabIndex = 4;
|
|
AddBtn.UseVisualStyleBackColor = false;
|
|
AddBtn.Click += AddBtn_Click;
|
|
//
|
|
// DataGV
|
|
//
|
|
DataGV.BackgroundColor = Color.DarkSlateBlue;
|
|
DataGV.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
DataGV.GridColor = Color.GreenYellow;
|
|
DataGV.Location = new Point(28, 86);
|
|
DataGV.Name = "DataGV";
|
|
DataGV.RowHeadersWidth = 62;
|
|
DataGV.Size = new Size(357, 245);
|
|
DataGV.TabIndex = 5;
|
|
//
|
|
// OrderRegistrations
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackgroundImage = Properties.Resources.RegistrationsFrameCover;
|
|
BackgroundImageLayout = ImageLayout.Stretch;
|
|
ClientSize = new Size(676, 364);
|
|
Controls.Add(DataGV);
|
|
Controls.Add(panel1);
|
|
DoubleBuffered = true;
|
|
Name = "OrderRegistrations";
|
|
Text = "OrderRegistrations";
|
|
Load += RegistrationsF_Load;
|
|
panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)DataGV).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panel1;
|
|
private Button DelBtn;
|
|
private Button AddBtn;
|
|
private DataGridView DataGV;
|
|
}
|
|
} |