초기 커밋.
This commit is contained in:
89
ssgrestserver/Form1.Designer.cs
generated
Normal file
89
ssgrestserver/Form1.Designer.cs
generated
Normal file
@@ -0,0 +1,89 @@
|
||||
namespace ssgrestserver
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
/// <summary>
|
||||
/// 필수 디자이너 변수입니다.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// 사용 중인 모든 리소스를 정리합니다.
|
||||
/// </summary>
|
||||
/// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form 디자이너에서 생성한 코드
|
||||
|
||||
/// <summary>
|
||||
/// 디자이너 지원에 필요한 메서드입니다.
|
||||
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.txbPort = new System.Windows.Forms.TextBox();
|
||||
this.lstBoxLog = new System.Windows.Forms.ListBox();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(503, 118);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(196, 64);
|
||||
this.button1.TabIndex = 0;
|
||||
this.button1.Text = "start";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Visible = false;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// txbPort
|
||||
//
|
||||
this.txbPort.Location = new System.Drawing.Point(341, 141);
|
||||
this.txbPort.Name = "txbPort";
|
||||
this.txbPort.Size = new System.Drawing.Size(100, 21);
|
||||
this.txbPort.TabIndex = 1;
|
||||
this.txbPort.Text = "60021";
|
||||
this.txbPort.Visible = false;
|
||||
//
|
||||
// lstBoxLog
|
||||
//
|
||||
this.lstBoxLog.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.lstBoxLog.FormattingEnabled = true;
|
||||
this.lstBoxLog.ItemHeight = 12;
|
||||
this.lstBoxLog.Location = new System.Drawing.Point(0, 0);
|
||||
this.lstBoxLog.Name = "lstBoxLog";
|
||||
this.lstBoxLog.Size = new System.Drawing.Size(800, 450);
|
||||
this.lstBoxLog.TabIndex = 2;
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||
this.Controls.Add(this.txbPort);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(this.lstBoxLog);
|
||||
this.Name = "Form1";
|
||||
this.Text = "Rest Server 25.10.15";
|
||||
this.Load += new System.EventHandler(this.Form1_Load);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.ListBox lstBoxLog;
|
||||
public System.Windows.Forms.TextBox txbPort;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user