-
Notifications
You must be signed in to change notification settings - Fork 0
/
Database.Designer.cs
135 lines (130 loc) · 5.43 KB
/
Database.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
namespace FlashEx
{
partial class Database
{
/// <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(Database));
comboBoxSelectBoard = new ComboBox();
groupBox1 = new GroupBox();
pictureBoxInfo = new PictureBox();
listBoxDatasheetList = new ListBox();
linkLabelEspProdSelector = new LinkLabel();
groupBox2 = new GroupBox();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)pictureBoxInfo).BeginInit();
groupBox2.SuspendLayout();
SuspendLayout();
//
// comboBoxSelectBoard
//
comboBoxSelectBoard.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxSelectBoard.FormattingEnabled = true;
comboBoxSelectBoard.Location = new Point(6, 22);
comboBoxSelectBoard.Name = "comboBoxSelectBoard";
comboBoxSelectBoard.Size = new Size(284, 23);
comboBoxSelectBoard.TabIndex = 0;
comboBoxSelectBoard.SelectedIndexChanged += comboBoxSelectBoard_SelectedIndexChanged;
//
// groupBox1
//
groupBox1.Controls.Add(comboBoxSelectBoard);
groupBox1.Location = new Point(12, 12);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(296, 58);
groupBox1.TabIndex = 1;
groupBox1.TabStop = false;
groupBox1.Text = "Select Board";
//
// pictureBoxInfo
//
pictureBoxInfo.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
pictureBoxInfo.BackColor = Color.FromArgb(38, 44, 66);
pictureBoxInfo.Location = new Point(319, -1);
pictureBoxInfo.Name = "pictureBoxInfo";
pictureBoxInfo.Size = new Size(737, 638);
pictureBoxInfo.SizeMode = PictureBoxSizeMode.Zoom;
pictureBoxInfo.TabIndex = 2;
pictureBoxInfo.TabStop = false;
//
// listBoxDatasheetList
//
listBoxDatasheetList.FormattingEnabled = true;
listBoxDatasheetList.ItemHeight = 15;
listBoxDatasheetList.Location = new Point(6, 22);
listBoxDatasheetList.Name = "listBoxDatasheetList";
listBoxDatasheetList.Size = new Size(284, 409);
listBoxDatasheetList.TabIndex = 4;
listBoxDatasheetList.DoubleClick += listBoxDatasheetList_DoubleClick;
//
// linkLabelEspProdSelector
//
linkLabelEspProdSelector.AutoSize = true;
linkLabelEspProdSelector.Location = new Point(12, 517);
linkLabelEspProdSelector.Name = "linkLabelEspProdSelector";
linkLabelEspProdSelector.Size = new Size(116, 15);
linkLabelEspProdSelector.TabIndex = 5;
linkLabelEspProdSelector.TabStop = true;
linkLabelEspProdSelector.Text = "ESP Product Selector";
linkLabelEspProdSelector.LinkClicked += linkLabelEspProdSelector_LinkClicked;
//
// groupBox2
//
groupBox2.Controls.Add(listBoxDatasheetList);
groupBox2.Location = new Point(12, 76);
groupBox2.Name = "groupBox2";
groupBox2.Size = new Size(296, 438);
groupBox2.TabIndex = 6;
groupBox2.TabStop = false;
groupBox2.Text = "Docs";
//
// Database
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1053, 637);
Controls.Add(groupBox2);
Controls.Add(linkLabelEspProdSelector);
Controls.Add(pictureBoxInfo);
Controls.Add(groupBox1);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "Database";
StartPosition = FormStartPosition.CenterScreen;
Text = "Database";
Load += Database_Load;
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)pictureBoxInfo).EndInit();
groupBox2.ResumeLayout(false);
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBoxSelectBoard;
private GroupBox groupBox1;
private PictureBox pictureBoxInfo;
private ListBox listBoxDatasheetList;
private LinkLabel linkLabelEspProdSelector;
private GroupBox groupBox2;
}
}