This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TableForm.Designer.cs
148 lines (143 loc) · 6.2 KB
/
TableForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
namespace VentilationCalculator
{
partial class TableForm
{
/// <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()
{
DataGridViewCellStyle dataGridViewCellStyle1 = new DataGridViewCellStyle();
tableLayoutPanel1 = new TableLayoutPanel();
dataGridView1 = new DataGridView();
panel1 = new Panel();
panel2 = new Panel();
clearform = new Button();
Save = new Button();
tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
panel2.SuspendLayout();
SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 3;
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 20F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 20F));
tableLayoutPanel1.Controls.Add(dataGridView1, 1, 1);
tableLayoutPanel1.Controls.Add(panel1, 1, 3);
tableLayoutPanel1.Controls.Add(panel2, 1, 2);
tableLayoutPanel1.Dock = DockStyle.Fill;
tableLayoutPanel1.Location = new Point(0, 0);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 4;
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 63.1278076F));
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 36.8721924F));
tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 20F));
tableLayoutPanel1.Size = new Size(1870, 923);
tableLayoutPanel1.TabIndex = 0;
//
// dataGridView1
//
dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridViewCellStyle1.Alignment = DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = SystemColors.Window;
dataGridViewCellStyle1.Font = new Font("Segoe UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
dataGridViewCellStyle1.ForeColor = SystemColors.ControlText;
dataGridViewCellStyle1.NullValue = null;
dataGridViewCellStyle1.SelectionBackColor = SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = DataGridViewTriState.False;
dataGridView1.DefaultCellStyle = dataGridViewCellStyle1;
dataGridView1.Dock = DockStyle.Fill;
dataGridView1.Location = new Point(23, 23);
dataGridView1.Name = "dataGridView1";
dataGridView1.RightToLeft = RightToLeft.No;
dataGridView1.RowHeadersWidth = 102;
dataGridView1.RowTemplate.Height = 49;
dataGridView1.Size = new Size(1824, 551);
dataGridView1.TabIndex = 0;
//
// panel1
//
panel1.Dock = DockStyle.Fill;
panel1.Location = new Point(23, 905);
panel1.Name = "panel1";
panel1.Size = new Size(1824, 15);
panel1.TabIndex = 1;
//
// panel2
//
panel2.Controls.Add(clearform);
panel2.Controls.Add(Save);
panel2.Dock = DockStyle.Fill;
panel2.Location = new Point(23, 580);
panel2.Name = "panel2";
panel2.Size = new Size(1824, 319);
panel2.TabIndex = 2;
//
// clearform
//
clearform.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
clearform.Location = new Point(3, 254);
clearform.Name = "clearform";
clearform.Size = new Size(339, 58);
clearform.TabIndex = 1;
clearform.Text = "Очистити дані таблиці";
clearform.TextAlign = ContentAlignment.BottomCenter;
clearform.UseVisualStyleBackColor = true;
clearform.Click += clearform_Click;
//
// Save
//
Save.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
Save.Location = new Point(1539, 258);
Save.Name = "Save";
Save.Size = new Size(282, 58);
Save.TabIndex = 0;
Save.Text = "Зберегти зміни";
Save.UseVisualStyleBackColor = true;
//
// TableForm
//
AutoScaleDimensions = new SizeF(17F, 41F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1870, 923);
Controls.Add(tableLayoutPanel1);
Name = "TableForm";
Text = "TableForm";
tableLayoutPanel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
panel2.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private TableLayoutPanel tableLayoutPanel1;
internal DataGridView dataGridView1;
private Panel panel1;
private Panel panel2;
private Button Save;
private Button clearform;
}
}