161 lines
6.5 KiB
C#
161 lines
6.5 KiB
C#
namespace DemoServer
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <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.label1 = new System.Windows.Forms.Label();
|
|
this.txtServAddr = new System.Windows.Forms.TextBox();
|
|
this.txtUrlAddr = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.btnOpenSwagger = new System.Windows.Forms.Button();
|
|
this.btnPing = new System.Windows.Forms.Button();
|
|
this.lblOut = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(14, 16);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(79, 13);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Server Address";
|
|
//
|
|
// txtServAddr
|
|
//
|
|
this.txtServAddr.Location = new System.Drawing.Point(99, 13);
|
|
this.txtServAddr.Name = "txtServAddr";
|
|
this.txtServAddr.Size = new System.Drawing.Size(342, 20);
|
|
this.txtServAddr.TabIndex = 1;
|
|
this.txtServAddr.Text = "iis01.egalware.com";
|
|
//
|
|
// txtUrlAddr
|
|
//
|
|
this.txtUrlAddr.Location = new System.Drawing.Point(99, 84);
|
|
this.txtUrlAddr.Name = "txtUrlAddr";
|
|
this.txtUrlAddr.Size = new System.Drawing.Size(342, 20);
|
|
this.txtUrlAddr.TabIndex = 3;
|
|
this.txtUrlAddr.Text = "https://iis01.egalware.com//WDC/SRV/api";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(14, 87);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(49, 13);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "API URL";
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(99, 40);
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.Size = new System.Drawing.Size(342, 20);
|
|
this.textBox1.TabIndex = 5;
|
|
this.textBox1.Text = "https://iis01.egalware.com/WDC/SRV/swagger/index.html";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(14, 43);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(49, 13);
|
|
this.label3.TabIndex = 4;
|
|
this.label3.Text = "Swagger";
|
|
//
|
|
// btnOpenSwagger
|
|
//
|
|
this.btnOpenSwagger.Location = new System.Drawing.Point(447, 38);
|
|
this.btnOpenSwagger.Name = "btnOpenSwagger";
|
|
this.btnOpenSwagger.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOpenSwagger.TabIndex = 6;
|
|
this.btnOpenSwagger.Text = "Open";
|
|
this.btnOpenSwagger.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnPing
|
|
//
|
|
this.btnPing.Location = new System.Drawing.Point(447, 13);
|
|
this.btnPing.Name = "btnPing";
|
|
this.btnPing.Size = new System.Drawing.Size(75, 23);
|
|
this.btnPing.TabIndex = 7;
|
|
this.btnPing.Text = "Ping";
|
|
this.btnPing.UseVisualStyleBackColor = true;
|
|
this.btnPing.Click += new System.EventHandler(this.btnPing_Click);
|
|
//
|
|
// lblOut
|
|
//
|
|
this.lblOut.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lblOut.AutoSize = true;
|
|
this.lblOut.BackColor = System.Drawing.SystemColors.Desktop;
|
|
this.lblOut.ForeColor = System.Drawing.SystemColors.ActiveCaption;
|
|
this.lblOut.Location = new System.Drawing.Point(534, 11);
|
|
this.lblOut.MinimumSize = new System.Drawing.Size(250, 400);
|
|
this.lblOut.Name = "lblOut";
|
|
this.lblOut.Size = new System.Drawing.Size(250, 400);
|
|
this.lblOut.TabIndex = 8;
|
|
this.lblOut.Text = "---";
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
|
this.Controls.Add(this.lblOut);
|
|
this.Controls.Add(this.btnPing);
|
|
this.Controls.Add(this.btnOpenSwagger);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.txtUrlAddr);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.txtServAddr);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "MainForm";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.TextBox txtServAddr;
|
|
private System.Windows.Forms.TextBox txtUrlAddr;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Button btnOpenSwagger;
|
|
private System.Windows.Forms.Button btnPing;
|
|
private System.Windows.Forms.Label lblOut;
|
|
}
|
|
}
|
|
|