forked from Ken98045/On-Guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EditAreasOfInterest.Designer.cs
119 lines (113 loc) · 4.59 KB
/
EditAreasOfInterest.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
namespace SAAI
{
partial class EditAreasOfInterest
{
/// <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.areasListView = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.doneButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// areasListView
//
this.areasListView.Activation = System.Windows.Forms.ItemActivation.TwoClick;
this.areasListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
this.columnHeader5});
this.areasListView.FullRowSelect = true;
this.areasListView.GridLines = true;
this.areasListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.areasListView.HideSelection = false;
this.areasListView.Location = new System.Drawing.Point(12, 12);
this.areasListView.Name = "areasListView";
this.areasListView.Size = new System.Drawing.Size(531, 345);
this.areasListView.TabIndex = 0;
this.areasListView.UseCompatibleStateImageBehavior = false;
this.areasListView.View = System.Windows.Forms.View.Details;
this.areasListView.ItemActivate += new System.EventHandler(this.OnActivate);
this.areasListView.SelectedIndexChanged += new System.EventHandler(this.AreasListView_SelectedIndexChanged);
//
// columnHeader1
//
this.columnHeader1.Text = "Area Name";
this.columnHeader1.Width = 250;
//
// columnHeader2
//
this.columnHeader2.Text = "X";
//
// columnHeader3
//
this.columnHeader3.Text = "Y";
//
// columnHeader4
//
this.columnHeader4.Text = "Width";
this.columnHeader4.Width = 70;
//
// columnHeader5
//
this.columnHeader5.Text = "Height";
this.columnHeader5.Width = 50;
//
// doneButton
//
this.doneButton.Location = new System.Drawing.Point(240, 373);
this.doneButton.Name = "doneButton";
this.doneButton.Size = new System.Drawing.Size(75, 23);
this.doneButton.TabIndex = 1;
this.doneButton.Text = "Done";
this.doneButton.UseVisualStyleBackColor = true;
this.doneButton.Click += new System.EventHandler(this.DoneButton_Click);
//
// EditAreasOfInterest
//
this.AcceptButton = this.doneButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(555, 412);
this.Controls.Add(this.doneButton);
this.Controls.Add(this.areasListView);
this.Name = "EditAreasOfInterest";
this.Text = "Edit Areas of Interest";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView areasListView;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.ColumnHeader columnHeader4;
private System.Windows.Forms.ColumnHeader columnHeader5;
private System.Windows.Forms.Button doneButton;
}
}