-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormMain.Designer.cs
118 lines (112 loc) · 5.09 KB
/
FormMain.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
namespace DirectSSTPTester
{
partial class FormMain
{
/// <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()
{
textBoxMessageToSend = new System.Windows.Forms.TextBox();
comboBoxTargetName = new System.Windows.Forms.ComboBox();
buttonRefreshFMO = new System.Windows.Forms.Button();
textBoxMessageReceived = new System.Windows.Forms.TextBox();
buttonSend = new System.Windows.Forms.Button();
SuspendLayout();
//
// textBoxMessageToSend
//
textBoxMessageToSend.AllowDrop = true;
textBoxMessageToSend.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
textBoxMessageToSend.Location = new System.Drawing.Point(12, 12);
textBoxMessageToSend.Multiline = true;
textBoxMessageToSend.Name = "textBoxMessageToSend";
textBoxMessageToSend.Size = new System.Drawing.Size(949, 346);
textBoxMessageToSend.TabIndex = 0;
textBoxMessageToSend.DragDrop += TextBoxMessageToSend_DragDrop;
textBoxMessageToSend.DragEnter += TextBoxMessageToSend_DragEnter;
//
// comboBoxTargetName
//
comboBoxTargetName.FormattingEnabled = true;
comboBoxTargetName.Location = new System.Drawing.Point(12, 371);
comboBoxTargetName.Name = "comboBoxTargetName";
comboBoxTargetName.Size = new System.Drawing.Size(272, 45);
comboBoxTargetName.TabIndex = 1;
//
// buttonRefreshFMO
//
buttonRefreshFMO.Location = new System.Drawing.Point(290, 364);
buttonRefreshFMO.Name = "buttonRefreshFMO";
buttonRefreshFMO.Size = new System.Drawing.Size(169, 52);
buttonRefreshFMO.TabIndex = 2;
buttonRefreshFMO.Text = "更新";
buttonRefreshFMO.UseVisualStyleBackColor = true;
buttonRefreshFMO.Click += ButtonRefreshFMO_Click;
//
// textBoxMessageReceived
//
textBoxMessageReceived.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
textBoxMessageReceived.Location = new System.Drawing.Point(12, 422);
textBoxMessageReceived.Multiline = true;
textBoxMessageReceived.Name = "textBoxMessageReceived";
textBoxMessageReceived.ReadOnly = true;
textBoxMessageReceived.Size = new System.Drawing.Size(949, 287);
textBoxMessageReceived.TabIndex = 4;
//
// buttonSend
//
buttonSend.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
buttonSend.Location = new System.Drawing.Point(792, 366);
buttonSend.Name = "buttonSend";
buttonSend.Size = new System.Drawing.Size(169, 52);
buttonSend.TabIndex = 3;
buttonSend.Text = "送信";
buttonSend.UseVisualStyleBackColor = true;
buttonSend.Click += ButtonSend_Click;
//
// FormMain
//
AutoScaleDimensions = new System.Drawing.SizeF(15F, 37F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
ClientSize = new System.Drawing.Size(972, 721);
Controls.Add(buttonSend);
Controls.Add(textBoxMessageReceived);
Controls.Add(buttonRefreshFMO);
Controls.Add(comboBoxTargetName);
Controls.Add(textBoxMessageToSend);
MinimumSize = new System.Drawing.Size(800, 600);
Name = "FormMain";
Text = "DirectSSTPTester";
FormClosed += FormMain_FormClosed;
Load += FormMain_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBoxMessageToSend;
private System.Windows.Forms.ComboBox comboBoxTargetName;
private System.Windows.Forms.Button buttonRefreshFMO;
private System.Windows.Forms.TextBox textBoxMessageReceived;
private System.Windows.Forms.Button buttonSend;
}
}