-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFormSelect.Designer.cs
75 lines (70 loc) · 3.12 KB
/
FormSelect.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
namespace INFOTECH
{
partial class FormSelect
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.m_listboxSelect = new System.Windows.Forms.ListBox();
this.m_buttonOpen = new System.Windows.Forms.Button();
this.m_labelSelect = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// m_listboxSelect
//
this.m_listboxSelect.FormattingEnabled = true;
this.m_listboxSelect.Location = new System.Drawing.Point(12, 38);
this.m_listboxSelect.Name = "m_listboxSelect";
this.m_listboxSelect.Size = new System.Drawing.Size(259, 173);
this.m_listboxSelect.Sorted = true;
this.m_listboxSelect.TabIndex = 0;
this.m_listboxSelect.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(m_listboxSelect_MouseDoubleClick);
//
// m_buttonOpen
//
this.m_buttonOpen.DialogResult = System.Windows.Forms.DialogResult.OK;
this.m_buttonOpen.Location = new System.Drawing.Point(197, 223);
this.m_buttonOpen.Name = "m_buttonOpen";
this.m_buttonOpen.Size = new System.Drawing.Size(75, 23);
this.m_buttonOpen.TabIndex = 1;
this.m_buttonOpen.Text = "Відкрити";
this.m_buttonOpen.UseVisualStyleBackColor = true;
this.m_buttonOpen.Click += new System.EventHandler(this.m_buttonOpen_Click);
//
// m_labelSelect
//
this.m_labelSelect.AutoSize = true;
this.m_labelSelect.Location = new System.Drawing.Point(12, 12);
this.m_labelSelect.Name = "m_labelSelect";
this.m_labelSelect.Size = new System.Drawing.Size(110, 13);
this.m_labelSelect.TabIndex = 3;
this.m_labelSelect.Text = "Доступні TWAIN драйвери:";
//
// FormSelect
//
this.AcceptButton = this.m_buttonOpen;
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.m_labelSelect);
this.Controls.Add(this.m_buttonOpen);
this.Controls.Add(this.m_listboxSelect);
this.Name = "MIA-SELECT";
this.Text = "Виберіть TWAIN джерело для захоплення зображення";
this.Icon = Properties.Resources.Default;
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.ListBox m_listboxSelect;
private System.Windows.Forms.Button m_buttonOpen;
private System.Windows.Forms.Label m_labelSelect;
}
}