116 lines
4.2 KiB
C#
116 lines
4.2 KiB
C#
using System.Windows.Forms;
|
|
|
|
namespace ShipyardView
|
|
{
|
|
partial class FormShips
|
|
{
|
|
/// <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()
|
|
{
|
|
AddButton = new Button();
|
|
DeleteButton = new Button();
|
|
UpdateButton = new Button();
|
|
RefreshButton = new Button();
|
|
dataGridView = new DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// AddButton
|
|
//
|
|
AddButton.Location = new Point(667, 43);
|
|
AddButton.Name = "AddButton";
|
|
AddButton.Size = new Size(94, 46);
|
|
AddButton.TabIndex = 0;
|
|
AddButton.Text = "добавить";
|
|
AddButton.UseVisualStyleBackColor = true;
|
|
AddButton.Click += AddButton_Click;
|
|
//
|
|
// DeleteButton
|
|
//
|
|
DeleteButton.Location = new Point(667, 111);
|
|
DeleteButton.Name = "DeleteButton";
|
|
DeleteButton.Size = new Size(94, 44);
|
|
DeleteButton.TabIndex = 1;
|
|
DeleteButton.Text = "удалить";
|
|
DeleteButton.UseVisualStyleBackColor = true;
|
|
DeleteButton.Click += DeleteButton_Click;
|
|
//
|
|
// UpdateButton
|
|
//
|
|
UpdateButton.Location = new Point(667, 177);
|
|
UpdateButton.Name = "UpdateButton";
|
|
UpdateButton.Size = new Size(94, 42);
|
|
UpdateButton.TabIndex = 2;
|
|
UpdateButton.Text = "изменить";
|
|
UpdateButton.UseVisualStyleBackColor = true;
|
|
UpdateButton.Click += UpdateButton_Click;
|
|
//
|
|
// RefreshButton
|
|
//
|
|
RefreshButton.Location = new Point(667, 392);
|
|
RefreshButton.Name = "RefreshButton";
|
|
RefreshButton.Size = new Size(94, 29);
|
|
RefreshButton.TabIndex = 3;
|
|
RefreshButton.Text = "обновить";
|
|
RefreshButton.UseVisualStyleBackColor = true;
|
|
RefreshButton.Click += RefreshButton_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Location = new Point(12, 43);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.Size = new Size(609, 395);
|
|
dataGridView.TabIndex = 4;
|
|
//
|
|
// FormShips
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 450);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(RefreshButton);
|
|
Controls.Add(UpdateButton);
|
|
Controls.Add(DeleteButton);
|
|
Controls.Add(AddButton);
|
|
Name = "FormShips";
|
|
Text = "Ships";
|
|
Load += FormShips_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button AddButton;
|
|
private Button DeleteButton;
|
|
private Button UpdateButton;
|
|
private Button RefreshButton;
|
|
private DataGridView dataGridView;
|
|
}
|
|
} |