-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormAnalysis.Designer.cs
More file actions
117 lines (111 loc) · 6.03 KB
/
FormAnalysis.Designer.cs
File metadata and controls
117 lines (111 loc) · 6.03 KB
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
namespace TextsBase
{
partial class FormAnalysis
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAnalysis));
this.dgvLettersAnalysis = new System.Windows.Forms.DataGridView();
this.chkRelativeValues = new System.Windows.Forms.CheckBox();
this.saveAbsoluteBTN = new System.Windows.Forms.Button();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.saveRelativeBTN = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dgvLettersAnalysis)).BeginInit();
this.SuspendLayout();
//
// dgvLettersAnalysis
//
this.dgvLettersAnalysis.AllowUserToAddRows = false;
this.dgvLettersAnalysis.AllowUserToDeleteRows = false;
this.dgvLettersAnalysis.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvLettersAnalysis.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.dgvLettersAnalysis.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
this.dgvLettersAnalysis.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvLettersAnalysis.Location = new System.Drawing.Point(12, 12);
this.dgvLettersAnalysis.Name = "dgvLettersAnalysis";
this.dgvLettersAnalysis.RowHeadersVisible = false;
this.dgvLettersAnalysis.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvLettersAnalysis.Size = new System.Drawing.Size(782, 469);
this.dgvLettersAnalysis.TabIndex = 0;
this.dgvLettersAnalysis.SortCompare += new System.Windows.Forms.DataGridViewSortCompareEventHandler(this.dgvLettersAnalysis_SortCompare);
//
// chkRelativeValues
//
this.chkRelativeValues.AutoSize = true;
this.chkRelativeValues.Location = new System.Drawing.Point(12, 491);
this.chkRelativeValues.Name = "chkRelativeValues";
this.chkRelativeValues.Size = new System.Drawing.Size(117, 17);
this.chkRelativeValues.TabIndex = 1;
this.chkRelativeValues.Text = "Відносні величини";
this.chkRelativeValues.UseVisualStyleBackColor = true;
this.chkRelativeValues.CheckedChanged += new System.EventHandler(this.chkRelativeValues_CheckedChanged);
//
// saveAbsoluteBTN
//
this.saveAbsoluteBTN.Location = new System.Drawing.Point(655, 487);
this.saveAbsoluteBTN.Name = "saveAbsoluteBTN";
this.saveAbsoluteBTN.Size = new System.Drawing.Size(123, 45);
this.saveAbsoluteBTN.TabIndex = 2;
this.saveAbsoluteBTN.Text = "Зберегти абсолютні величини";
this.saveAbsoluteBTN.UseVisualStyleBackColor = true;
this.saveAbsoluteBTN.Click += new System.EventHandler(this.saveAbsoluteBTN_Click);
//
// saveRelativeBTN
//
this.saveRelativeBTN.Location = new System.Drawing.Point(526, 487);
this.saveRelativeBTN.Name = "saveRelativeBTN";
this.saveRelativeBTN.Size = new System.Drawing.Size(123, 45);
this.saveRelativeBTN.TabIndex = 3;
this.saveRelativeBTN.Text = "Зберегти відносні величини";
this.saveRelativeBTN.UseVisualStyleBackColor = true;
this.saveRelativeBTN.Click += new System.EventHandler(this.saveRelativeBTN_Click);
//
// FormAnalysis
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(806, 544);
this.Controls.Add(this.saveRelativeBTN);
this.Controls.Add(this.saveAbsoluteBTN);
this.Controls.Add(this.chkRelativeValues);
this.Controls.Add(this.dgvLettersAnalysis);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FormAnalysis";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "FormAnalysis";
this.Load += new System.EventHandler(this.FormAnalysis_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvLettersAnalysis)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgvLettersAnalysis;
private System.Windows.Forms.CheckBox chkRelativeValues;
private System.Windows.Forms.Button saveAbsoluteBTN;
private System.Windows.Forms.SaveFileDialog saveFileDialog1;
private System.Windows.Forms.Button saveRelativeBTN;
}
}