Files
SilkierQuartz/Source/Examples/WinFormSelfHost/MainForm.Designer.cs
Ján Lučanský 6b2f18bfb4 Initial commit
2018-12-28 19:37:16 +01:00

91 lines
3.3 KiB
C#

namespace WinFormSelfHost
{
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.btnStart = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.link = new System.Windows.Forms.LinkLabel();
this.SuspendLayout();
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(71, 64);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(156, 51);
this.btnStart.TabIndex = 0;
this.btnStart.Text = "Start";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// btnStop
//
this.btnStop.Enabled = false;
this.btnStop.Location = new System.Drawing.Point(71, 121);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(156, 51);
this.btnStop.TabIndex = 1;
this.btnStop.Text = "Stop";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// link
//
this.link.AutoSize = true;
this.link.Location = new System.Drawing.Point(91, 211);
this.link.Name = "link";
this.link.Size = new System.Drawing.Size(107, 13);
this.link.TabIndex = 2;
this.link.TabStop = true;
this.link.Text = "http://localhost:9999";
this.link.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.link_LinkClicked);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(319, 259);
this.Controls.Add(this.link);
this.Controls.Add(this.btnStop);
this.Controls.Add(this.btnStart);
this.Name = "MainForm";
this.Text = "MainForm";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnStart;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.LinkLabel link;
}
}