LTT Source에 들어가는 Module Dll
장정호
2020-12-15 87e93aeb179ab7995537cde70cafd4f5b9fa585c
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 DLL_Test_Program
{
    partial class Test_Form
    {
        /// <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.btn_Autonics = new System.Windows.Forms.Button();
            this.btn_Ophir_StarBright = new System.Windows.Forms.Button();
            this.btn_Pulse_Generater = new System.Windows.Forms.Button();
            this.btn_IVC3000 = new System.Windows.Forms.Button();
            this.btn_ESC_Supply = new System.Windows.Forms.Button();
            this.btn_EnergyMax = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // btn_Autonics
            // 
            this.btn_Autonics.Location = new System.Drawing.Point(12, 12);
            this.btn_Autonics.Name = "btn_Autonics";
            this.btn_Autonics.Size = new System.Drawing.Size(130, 37);
            this.btn_Autonics.TabIndex = 0;
            this.btn_Autonics.Text = "Autonics_PMC_2HS";
            this.btn_Autonics.UseVisualStyleBackColor = true;
            this.btn_Autonics.Click += new System.EventHandler(this.btn_Autonics_Click);
            // 
            // btn_Ophir_StarBright
            // 
            this.btn_Ophir_StarBright.Location = new System.Drawing.Point(161, 12);
            this.btn_Ophir_StarBright.Name = "btn_Ophir_StarBright";
            this.btn_Ophir_StarBright.Size = new System.Drawing.Size(130, 37);
            this.btn_Ophir_StarBright.TabIndex = 1;
            this.btn_Ophir_StarBright.Text = "Ophir_StarBright";
            this.btn_Ophir_StarBright.UseVisualStyleBackColor = true;
            this.btn_Ophir_StarBright.Click += new System.EventHandler(this.btn_Ophir_StarBright_Click);
            // 
            // btn_Pulse_Generater
            // 
            this.btn_Pulse_Generater.Location = new System.Drawing.Point(12, 65);
            this.btn_Pulse_Generater.Name = "btn_Pulse_Generater";
            this.btn_Pulse_Generater.Size = new System.Drawing.Size(130, 37);
            this.btn_Pulse_Generater.TabIndex = 2;
            this.btn_Pulse_Generater.Text = "Pulse_Generater";
            this.btn_Pulse_Generater.UseVisualStyleBackColor = true;
            // 
            // btn_IVC3000
            // 
            this.btn_IVC3000.Location = new System.Drawing.Point(161, 65);
            this.btn_IVC3000.Name = "btn_IVC3000";
            this.btn_IVC3000.Size = new System.Drawing.Size(130, 37);
            this.btn_IVC3000.TabIndex = 3;
            this.btn_IVC3000.Text = "IVC3000";
            this.btn_IVC3000.UseVisualStyleBackColor = true;
            // 
            // btn_ESC_Supply
            // 
            this.btn_ESC_Supply.Location = new System.Drawing.Point(12, 121);
            this.btn_ESC_Supply.Name = "btn_ESC_Supply";
            this.btn_ESC_Supply.Size = new System.Drawing.Size(130, 37);
            this.btn_ESC_Supply.TabIndex = 4;
            this.btn_ESC_Supply.Text = "ESC_Supply";
            this.btn_ESC_Supply.UseVisualStyleBackColor = true;
            // 
            this.btn_EnergyMax.Location = new System.Drawing.Point(161, 121);
            this.btn_EnergyMax.Name = "btn_EnergyMax";
            this.btn_EnergyMax.Size = new System.Drawing.Size(130, 37);
            this.btn_EnergyMax.TabIndex = 5;
            this.btn_EnergyMax.Text = "EnergyMax";
            this.btn_EnergyMax.UseVisualStyleBackColor = true;
            this.btn_EnergyMax.Click += new System.EventHandler(this.btn_EnergyMax_Click);
            // Test_Form
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(656, 424);
            this.Controls.Add(this.btn_EnergyMax);
            this.Controls.Add(this.btn_ESC_Supply);
            this.Controls.Add(this.btn_IVC3000);
            this.Controls.Add(this.btn_Pulse_Generater);
            this.Controls.Add(this.btn_Ophir_StarBright);
            this.Controls.Add(this.btn_Autonics);
            this.Name = "Test_Form";
            this.Text = "Test Form";
            this.ResumeLayout(false);
 
        }
 
        #endregion
 
        private System.Windows.Forms.Button btn_Autonics;
        private System.Windows.Forms.Button btn_Ophir_StarBright;
        private System.Windows.Forms.Button btn_Pulse_Generater;
        private System.Windows.Forms.Button btn_IVC3000;
        private System.Windows.Forms.Button btn_ESC_Supply;
        private System.Windows.Forms.Button btn_EnergyMax;
    }
}