-
Notifications
You must be signed in to change notification settings - Fork 5
/
ResultForm.Designer.cs
115 lines (109 loc) · 5.58 KB
/
ResultForm.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
namespace ZenStatesDebugTool
{
partial class ResultForm
{
/// <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()
{
this.textBoxFormResult = new System.Windows.Forms.TextBox();
this.buttonSaveResult = new System.Windows.Forms.Button();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.buttonSaveAs = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// textBoxFormResult
//
this.textBoxFormResult.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tableLayoutPanel1.SetColumnSpan(this.textBoxFormResult, 2);
this.textBoxFormResult.Dock = System.Windows.Forms.DockStyle.Fill;
this.textBoxFormResult.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textBoxFormResult.Location = new System.Drawing.Point(3, 3);
this.textBoxFormResult.Multiline = true;
this.textBoxFormResult.Name = "textBoxFormResult";
this.textBoxFormResult.ReadOnly = true;
this.textBoxFormResult.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBoxFormResult.Size = new System.Drawing.Size(375, 239);
this.textBoxFormResult.TabIndex = 0;
this.textBoxFormResult.TabStop = false;
//
// buttonSaveResult
//
this.buttonSaveResult.Location = new System.Drawing.Point(3, 248);
this.buttonSaveResult.Name = "buttonSaveResult";
this.buttonSaveResult.Size = new System.Drawing.Size(75, 23);
this.buttonSaveResult.TabIndex = 1;
this.buttonSaveResult.Text = "Save";
this.buttonSaveResult.UseVisualStyleBackColor = true;
this.buttonSaveResult.Click += new System.EventHandler(this.buttonSaveResult_Click);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.buttonSaveAs, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.textBoxFormResult, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.buttonSaveResult, 0, 1);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(381, 274);
this.tableLayoutPanel1.TabIndex = 3;
//
// buttonSaveAs
//
this.buttonSaveAs.Location = new System.Drawing.Point(84, 248);
this.buttonSaveAs.Name = "buttonSaveAs";
this.buttonSaveAs.Size = new System.Drawing.Size(75, 23);
this.buttonSaveAs.TabIndex = 4;
this.buttonSaveAs.Text = "Save As...";
this.buttonSaveAs.UseVisualStyleBackColor = true;
this.buttonSaveAs.Click += new System.EventHandler(this.buttonSaveAs_Click);
//
// ResultForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(381, 274);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "ResultForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Form1";
this.TopMost = true;
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
public System.Windows.Forms.TextBox textBoxFormResult;
private System.Windows.Forms.Button buttonSaveResult;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Button buttonSaveAs;
}
}