128 lines
5.0 KiB
C#
128 lines
5.0 KiB
C#
namespace RealEstateTransactions.Forms
|
|
{
|
|
partial class FormApartments
|
|
{
|
|
/// <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()
|
|
{
|
|
panelTools = new Panel();
|
|
buttonDelete = new Button();
|
|
buttonUpdate = new Button();
|
|
buttonAdd = new Button();
|
|
dataGridView = new DataGridView();
|
|
panelTools.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// panelTools
|
|
//
|
|
panelTools.Controls.Add(buttonDelete);
|
|
panelTools.Controls.Add(buttonUpdate);
|
|
panelTools.Controls.Add(buttonAdd);
|
|
panelTools.Dock = DockStyle.Right;
|
|
panelTools.Location = new Point(851, 0);
|
|
panelTools.Name = "panelTools";
|
|
panelTools.Size = new Size(131, 553);
|
|
panelTools.TabIndex = 0;
|
|
//
|
|
// buttonDelete
|
|
//
|
|
buttonDelete.BackgroundImage = Properties.Resources.Delete;
|
|
buttonDelete.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonDelete.Location = new Point(28, 333);
|
|
buttonDelete.Name = "buttonDelete";
|
|
buttonDelete.Size = new Size(80, 80);
|
|
buttonDelete.TabIndex = 2;
|
|
buttonDelete.UseVisualStyleBackColor = true;
|
|
buttonDelete.Click += ButtonDelete_Click;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
buttonUpdate.BackgroundImage = Properties.Resources.Update;
|
|
buttonUpdate.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonUpdate.Location = new Point(28, 204);
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
buttonUpdate.Size = new Size(80, 80);
|
|
buttonUpdate.TabIndex = 1;
|
|
buttonUpdate.UseVisualStyleBackColor = true;
|
|
buttonUpdate.Click += ButtonUpdate_Click;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.BackgroundImage = Properties.Resources.Add;
|
|
buttonAdd.BackgroundImageLayout = ImageLayout.Stretch;
|
|
buttonAdd.Location = new Point(28, 73);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(80, 80);
|
|
buttonAdd.TabIndex = 0;
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += ButtonAdd_Click;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.AllowUserToAddRows = false;
|
|
dataGridView.AllowUserToDeleteRows = false;
|
|
dataGridView.AllowUserToResizeColumns = false;
|
|
dataGridView.AllowUserToResizeRows = false;
|
|
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Dock = DockStyle.Fill;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.MultiSelect = false;
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersVisible = false;
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView.Size = new Size(851, 553);
|
|
dataGridView.TabIndex = 1;
|
|
dataGridView.TabStop = false;
|
|
//
|
|
// FormApartments
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(982, 553);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(panelTools);
|
|
Name = "FormApartments";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Квартиры";
|
|
Load += FormApartments_Load;
|
|
panelTools.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Panel panelTools;
|
|
private Button buttonDelete;
|
|
private Button buttonUpdate;
|
|
private Button buttonAdd;
|
|
private DataGridView dataGridView;
|
|
}
|
|
} |