-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
152 lines (147 loc) · 5.71 KB
/
MainForm.Designer.cs
File metadata and controls
152 lines (147 loc) · 5.71 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
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
namespace HomographyApp
{
partial class MainForm
{
/// <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()
{
panelMenu = new Panel();
buttonSaveMatrixH = new Button();
buttonPointsRef = new Button();
buttonPointsOrig = new Button();
textBoxInfo = new TextBox();
buttonRef = new Button();
buttonLoadOrigImage = new Button();
panelDrawing = new Panel();
panelMenu.SuspendLayout();
SuspendLayout();
//
// panelMenu
//
panelMenu.BackColor = Color.DarkGray;
panelMenu.Controls.Add(buttonSaveMatrixH);
panelMenu.Controls.Add(buttonPointsRef);
panelMenu.Controls.Add(buttonPointsOrig);
panelMenu.Controls.Add(textBoxInfo);
panelMenu.Controls.Add(buttonRef);
panelMenu.Controls.Add(buttonLoadOrigImage);
panelMenu.Dock = DockStyle.Left;
panelMenu.Location = new Point(0, 0);
panelMenu.Name = "panelMenu";
panelMenu.Size = new Size(270, 984);
panelMenu.TabIndex = 0;
//
// buttonSaveMatrixH
//
buttonSaveMatrixH.Location = new Point(12, 76);
buttonSaveMatrixH.Name = "buttonSaveMatrixH";
buttonSaveMatrixH.Size = new Size(122, 26);
buttonSaveMatrixH.TabIndex = 5;
buttonSaveMatrixH.Text = "Save Matrix H";
buttonSaveMatrixH.UseVisualStyleBackColor = true;
buttonSaveMatrixH.Click += ButtonSaveMatrixH_Click;
//
// buttonPointsRef
//
buttonPointsRef.Location = new Point(140, 44);
buttonPointsRef.Name = "buttonPointsRef";
buttonPointsRef.Size = new Size(115, 26);
buttonPointsRef.TabIndex = 4;
buttonPointsRef.Text = "Points Ref";
buttonPointsRef.UseVisualStyleBackColor = true;
buttonPointsRef.Click += ButtonPointsRef_Click;
//
// buttonPointsOrig
//
buttonPointsOrig.Location = new Point(140, 12);
buttonPointsOrig.Name = "buttonPointsOrig";
buttonPointsOrig.Size = new Size(115, 26);
buttonPointsOrig.TabIndex = 3;
buttonPointsOrig.Text = "Points Orig";
buttonPointsOrig.UseVisualStyleBackColor = true;
buttonPointsOrig.Click += ButtonPointsOrig_Click;
//
// textBoxInfo
//
textBoxInfo.Location = new Point(12, 108);
textBoxInfo.Multiline = true;
textBoxInfo.Name = "textBoxInfo";
textBoxInfo.ScrollBars = ScrollBars.Vertical;
textBoxInfo.Size = new Size(243, 864);
textBoxInfo.TabIndex = 2;
//
// buttonRef
//
buttonRef.Location = new Point(12, 44);
buttonRef.Name = "buttonRef";
buttonRef.Size = new Size(122, 26);
buttonRef.TabIndex = 1;
buttonRef.Text = "Load Ref";
buttonRef.UseVisualStyleBackColor = true;
buttonRef.Click += ButtonRef_Click;
//
// buttonLoadOrigImage
//
buttonLoadOrigImage.Location = new Point(12, 12);
buttonLoadOrigImage.Name = "buttonLoadOrigImage";
buttonLoadOrigImage.Size = new Size(122, 26);
buttonLoadOrigImage.TabIndex = 0;
buttonLoadOrigImage.Text = "Load Orig";
buttonLoadOrigImage.UseVisualStyleBackColor = true;
buttonLoadOrigImage.Click += ButtonLoadOrigImage_Click;
//
// panelDrawing
//
panelDrawing.BackColor = SystemColors.ControlLightLight;
panelDrawing.Dock = DockStyle.Fill;
panelDrawing.Location = new Point(270, 0);
panelDrawing.Name = "panelDrawing";
panelDrawing.Size = new Size(1314, 984);
panelDrawing.TabIndex = 1;
panelDrawing.Paint += PanelDrawing_Paint;
panelDrawing.MouseDown += PanelDrawing_MouseDown;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1584, 984);
Controls.Add(panelDrawing);
Controls.Add(panelMenu);
Name = "MainForm";
Text = "Homography caluculator";
panelMenu.ResumeLayout(false);
panelMenu.PerformLayout();
ResumeLayout(false);
}
#endregion
private Panel panelMenu;
private Button buttonLoadOrigImage;
private Panel panelDrawing;
private Button buttonRef;
private Button buttonPointsOrig;
private TextBox textBoxInfo;
private Button buttonPointsRef;
private Button buttonSaveMatrixH;
}
}