128 lines
4.6 KiB
C#
128 lines
4.6 KiB
C#
namespace LDBproject.AdditionalForms
|
|
{
|
|
partial class EmployeesF
|
|
{
|
|
/// <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()
|
|
{
|
|
DataGV = new DataGridView();
|
|
panel1 = new Panel();
|
|
DelBtn = new Button();
|
|
UpdBtn = new Button();
|
|
AddBtn = new Button();
|
|
((System.ComponentModel.ISupportInitialize)DataGV).BeginInit();
|
|
panel1.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// DataGV
|
|
//
|
|
DataGV.BackgroundColor = Color.DarkSlateBlue;
|
|
DataGV.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
DataGV.GridColor = Color.GreenYellow;
|
|
DataGV.Location = new Point(30, 100);
|
|
DataGV.Name = "DataGV";
|
|
DataGV.RowHeadersWidth = 62;
|
|
DataGV.Size = new Size(550, 273);
|
|
DataGV.TabIndex = 0;
|
|
//
|
|
// panel1
|
|
//
|
|
panel1.BackColor = Color.Transparent;
|
|
panel1.Controls.Add(DelBtn);
|
|
panel1.Controls.Add(UpdBtn);
|
|
panel1.Controls.Add(AddBtn);
|
|
panel1.Dock = DockStyle.Right;
|
|
panel1.Location = new Point(586, 0);
|
|
panel1.Name = "panel1";
|
|
panel1.Size = new Size(163, 407);
|
|
panel1.TabIndex = 1;
|
|
//
|
|
// DelBtn
|
|
//
|
|
DelBtn.BackColor = Color.DarkSlateBlue;
|
|
DelBtn.BackgroundImage = Properties.Resources.DelImg;
|
|
DelBtn.BackgroundImageLayout = ImageLayout.Stretch;
|
|
DelBtn.ForeColor = Color.Transparent;
|
|
DelBtn.Location = new Point(27, 218);
|
|
DelBtn.Name = "DelBtn";
|
|
DelBtn.Size = new Size(78, 71);
|
|
DelBtn.TabIndex = 6;
|
|
DelBtn.UseVisualStyleBackColor = false;
|
|
DelBtn.Click += DelBtn_Click;
|
|
//
|
|
// UpdBtn
|
|
//
|
|
UpdBtn.BackColor = Color.DarkSlateBlue;
|
|
UpdBtn.BackgroundImage = Properties.Resources.OperationImg;
|
|
UpdBtn.BackgroundImageLayout = ImageLayout.Stretch;
|
|
UpdBtn.ForeColor = Color.Transparent;
|
|
UpdBtn.Location = new Point(27, 141);
|
|
UpdBtn.Name = "UpdBtn";
|
|
UpdBtn.Size = new Size(78, 71);
|
|
UpdBtn.TabIndex = 5;
|
|
UpdBtn.UseVisualStyleBackColor = false;
|
|
UpdBtn.Click += UpdBtn_Click;
|
|
//
|
|
// AddBtn
|
|
//
|
|
AddBtn.BackColor = Color.DarkSlateBlue;
|
|
AddBtn.BackgroundImage = Properties.Resources.AddImg;
|
|
AddBtn.BackgroundImageLayout = ImageLayout.Stretch;
|
|
AddBtn.ForeColor = Color.Transparent;
|
|
AddBtn.Location = new Point(27, 64);
|
|
AddBtn.Name = "AddBtn";
|
|
AddBtn.Size = new Size(78, 71);
|
|
AddBtn.TabIndex = 4;
|
|
AddBtn.UseVisualStyleBackColor = false;
|
|
AddBtn.Click += AddBtn_Click;
|
|
//
|
|
// EmployeesF
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackgroundImage = Properties.Resources.EmployeesFrameCover;
|
|
BackgroundImageLayout = ImageLayout.Stretch;
|
|
ClientSize = new Size(749, 407);
|
|
Controls.Add(panel1);
|
|
Controls.Add(DataGV);
|
|
DoubleBuffered = true;
|
|
Name = "EmployeesF";
|
|
Text = "EmployeesF";
|
|
Load += EmployeesF_Load;
|
|
((System.ComponentModel.ISupportInitialize)DataGV).EndInit();
|
|
panel1.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView DataGV;
|
|
private Panel panel1;
|
|
private Button AddBtn;
|
|
private Button UpdBtn;
|
|
private Button DelBtn;
|
|
}
|
|
} |