-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatsSummaryWindow.Designer.cs
167 lines (164 loc) · 7.4 KB
/
StatsSummaryWindow.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
* Created by SharpDevelop.
* User: Andri
* Date: 09/09/2014
* Time: 23:09
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace KeeStats
{
partial class StatsSummaryWindow
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.TabControl tabControl;
private System.Windows.Forms.TabPage tabGeneral;
private System.Windows.Forms.TabPage tabQuality;
private System.Windows.Forms.DataGridView generalStatsView;
private System.Windows.Forms.DataGridView qualityStatsView;
private System.Windows.Forms.CheckBox recursiveSearch;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.tabControl = new System.Windows.Forms.TabControl();
this.tabGeneral = new System.Windows.Forms.TabPage();
this.generalStatsView = new System.Windows.Forms.DataGridView();
this.tabQuality = new System.Windows.Forms.TabPage();
this.qualityStatsView = new System.Windows.Forms.DataGridView();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.recursiveSearch = new System.Windows.Forms.CheckBox();
this.tabControl.SuspendLayout();
this.tabGeneral.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.generalStatsView)).BeginInit();
this.tabQuality.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.qualityStatsView)).BeginInit();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// tabControl
//
this.tabControl.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.tabControl.Controls.Add(this.tabGeneral);
this.tabControl.Controls.Add(this.tabQuality);
this.tabControl.Location = new System.Drawing.Point(3, 3);
this.tabControl.Name = "tabControl";
this.tabControl.SelectedIndex = 0;
this.tabControl.Size = new System.Drawing.Size(271, 231);
this.tabControl.TabIndex = 0;
//
// tabGeneral
//
this.tabGeneral.Controls.Add(this.generalStatsView);
this.tabGeneral.Location = new System.Drawing.Point(4, 22);
this.tabGeneral.Name = "tabGeneral";
this.tabGeneral.Padding = new System.Windows.Forms.Padding(3);
this.tabGeneral.Size = new System.Drawing.Size(263, 205);
this.tabGeneral.TabIndex = 0;
this.tabGeneral.Text = "General Stats";
this.tabGeneral.UseVisualStyleBackColor = true;
//
// generalStatsView
//
this.generalStatsView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.generalStatsView.Dock = System.Windows.Forms.DockStyle.Fill;
this.generalStatsView.GridColor = System.Drawing.SystemColors.ActiveCaption;
this.generalStatsView.Location = new System.Drawing.Point(3, 3);
this.generalStatsView.Name = "generalStatsView";
this.generalStatsView.RowHeadersVisible = false;
this.generalStatsView.ShowEditingIcon = false;
this.generalStatsView.Size = new System.Drawing.Size(257, 199);
this.generalStatsView.TabIndex = 0;
//
// tabQuality
//
this.tabQuality.Controls.Add(this.qualityStatsView);
this.tabQuality.Location = new System.Drawing.Point(4, 22);
this.tabQuality.Name = "tabQuality";
this.tabQuality.Padding = new System.Windows.Forms.Padding(3);
this.tabQuality.Size = new System.Drawing.Size(263, 205);
this.tabQuality.TabIndex = 1;
this.tabQuality.Text = "Quality Stats";
this.tabQuality.UseVisualStyleBackColor = true;
//
// qualityStatsView
//
this.qualityStatsView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
this.qualityStatsView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
this.qualityStatsView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.qualityStatsView.Dock = System.Windows.Forms.DockStyle.Fill;
this.qualityStatsView.GridColor = System.Drawing.SystemColors.ActiveCaption;
this.qualityStatsView.Location = new System.Drawing.Point(3, 3);
this.qualityStatsView.Name = "qualityStatsView";
this.qualityStatsView.RowHeadersVisible = false;
this.qualityStatsView.ShowEditingIcon = false;
this.qualityStatsView.Size = new System.Drawing.Size(257, 199);
this.qualityStatsView.TabIndex = 0;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.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.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.tabControl, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.recursiveSearch, 0, 1);
this.tableLayoutPanel1.Location = new System.Drawing.Point(4, 1);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 91.18774F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.812261F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(277, 261);
this.tableLayoutPanel1.TabIndex = 1;
//
// recursiveSearch
//
this.recursiveSearch.Location = new System.Drawing.Point(3, 240);
this.recursiveSearch.Name = "recursiveSearch";
this.recursiveSearch.Size = new System.Drawing.Size(264, 18);
this.recursiveSearch.TabIndex = 1;
this.recursiveSearch.Text = "&Compute stats recursively";
this.recursiveSearch.UseVisualStyleBackColor = true;
//
// StatsSummaryWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "StatsSummaryWindow";
this.Text = "KeeStats";
this.tabControl.ResumeLayout(false);
this.tabGeneral.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.generalStatsView)).EndInit();
this.tabQuality.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.qualityStatsView)).EndInit();
this.tableLayoutPanel1.ResumeLayout(false);
this.ResumeLayout(false);
}
}
}