DutyContent/DcControl.Designer.cs
ksh 2ebdbbaf39
Enhance after version 13 (#22)
* Form controls scrolling
* Show zone name on status bar
* Update tab force activating once
* Status bar visible option on config tab
* add locale mesgs
2021-06-23 21:07:40 +09:00

193 lines
7.6 KiB
C#

namespace DutyContent
{
partial class DcControl
{
/// <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
/// <summary>
/// 디자이너 지원에 필요한 메서드입니다.
/// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
/// </summary>
private void InitializeComponent()
{
this.spctBase = new System.Windows.Forms.SplitContainer();
this.tabMain = new System.Windows.Forms.TabControl();
this.tabPageDuty = new System.Windows.Forms.TabPage();
this.tabPagePing = new System.Windows.Forms.TabPage();
this.tabPageConfig = new System.Windows.Forms.TabPage();
this.txtMesg = new System.Windows.Forms.RichTextBox();
this.btnClearMesg = new System.Windows.Forms.Button();
this.panelBase = new System.Windows.Forms.Panel();
this.lblStatusLeft = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.spctBase)).BeginInit();
this.spctBase.Panel1.SuspendLayout();
this.spctBase.Panel2.SuspendLayout();
this.spctBase.SuspendLayout();
this.tabMain.SuspendLayout();
this.panelBase.SuspendLayout();
this.SuspendLayout();
//
// spctBase
//
this.spctBase.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.spctBase.Location = new System.Drawing.Point(3, 3);
this.spctBase.Name = "spctBase";
this.spctBase.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// spctBase.Panel1
//
this.spctBase.Panel1.Controls.Add(this.tabMain);
//
// spctBase.Panel2
//
this.spctBase.Panel2.Controls.Add(this.txtMesg);
this.spctBase.Panel2.Controls.Add(this.btnClearMesg);
this.spctBase.Size = new System.Drawing.Size(786, 534);
this.spctBase.SplitterDistance = 467;
this.spctBase.TabIndex = 0;
//
// tabMain
//
this.tabMain.Alignment = System.Windows.Forms.TabAlignment.Left;
this.tabMain.Controls.Add(this.tabPageDuty);
this.tabMain.Controls.Add(this.tabPagePing);
this.tabMain.Controls.Add(this.tabPageConfig);
this.tabMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabMain.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
this.tabMain.ItemSize = new System.Drawing.Size(30, 100);
this.tabMain.Location = new System.Drawing.Point(0, 0);
this.tabMain.Multiline = true;
this.tabMain.Name = "tabMain";
this.tabMain.SelectedIndex = 0;
this.tabMain.Size = new System.Drawing.Size(786, 467);
this.tabMain.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
this.tabMain.TabIndex = 0;
this.tabMain.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.TabMain_DrawItem);
//
// tabPageDuty
//
this.tabPageDuty.BackColor = System.Drawing.Color.Transparent;
this.tabPageDuty.Location = new System.Drawing.Point(104, 4);
this.tabPageDuty.Name = "tabPageDuty";
this.tabPageDuty.Padding = new System.Windows.Forms.Padding(3);
this.tabPageDuty.Size = new System.Drawing.Size(678, 459);
this.tabPageDuty.TabIndex = 0;
this.tabPageDuty.Text = "Duty";
//
// tabPagePing
//
this.tabPagePing.Location = new System.Drawing.Point(104, 4);
this.tabPagePing.Name = "tabPagePing";
this.tabPagePing.Size = new System.Drawing.Size(678, 459);
this.tabPagePing.TabIndex = 2;
this.tabPagePing.Text = "Ping";
this.tabPagePing.UseVisualStyleBackColor = true;
//
// tabPageConfig
//
this.tabPageConfig.Location = new System.Drawing.Point(104, 4);
this.tabPageConfig.Name = "tabPageConfig";
this.tabPageConfig.Padding = new System.Windows.Forms.Padding(3);
this.tabPageConfig.Size = new System.Drawing.Size(678, 459);
this.tabPageConfig.TabIndex = 1;
this.tabPageConfig.Text = "Config";
this.tabPageConfig.UseVisualStyleBackColor = true;
//
// txtMesg
//
this.txtMesg.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtMesg.Location = new System.Drawing.Point(104, 3);
this.txtMesg.Name = "txtMesg";
this.txtMesg.ReadOnly = true;
this.txtMesg.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.txtMesg.Size = new System.Drawing.Size(679, 57);
this.txtMesg.TabIndex = 1;
this.txtMesg.Text = "";
//
// btnClearMesg
//
this.btnClearMesg.Location = new System.Drawing.Point(3, 3);
this.btnClearMesg.Name = "btnClearMesg";
this.btnClearMesg.Size = new System.Drawing.Size(95, 33);
this.btnClearMesg.TabIndex = 0;
this.btnClearMesg.Text = "Clear Mesg";
this.btnClearMesg.UseVisualStyleBackColor = true;
//
// panelBase
//
this.panelBase.Controls.Add(this.lblStatusLeft);
this.panelBase.Controls.Add(this.spctBase);
this.panelBase.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelBase.Location = new System.Drawing.Point(0, 0);
this.panelBase.Name = "panelBase";
this.panelBase.Size = new System.Drawing.Size(792, 567);
this.panelBase.TabIndex = 1;
//
// lblStatusLeft
//
this.lblStatusLeft.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lblStatusLeft.BackColor = System.Drawing.Color.MidnightBlue;
this.lblStatusLeft.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblStatusLeft.ForeColor = System.Drawing.Color.White;
this.lblStatusLeft.Location = new System.Drawing.Point(0, 540);
this.lblStatusLeft.Name = "lblStatusLeft";
this.lblStatusLeft.Size = new System.Drawing.Size(792, 27);
this.lblStatusLeft.TabIndex = 1;
this.lblStatusLeft.Text = "99";
this.lblStatusLeft.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.lblStatusLeft.Visible = false;
//
// DcControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.panelBase);
this.Name = "DcControl";
this.Size = new System.Drawing.Size(792, 567);
this.spctBase.Panel1.ResumeLayout(false);
this.spctBase.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.spctBase)).EndInit();
this.spctBase.ResumeLayout(false);
this.tabMain.ResumeLayout(false);
this.panelBase.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer spctBase;
private System.Windows.Forms.Button btnClearMesg;
private System.Windows.Forms.TabControl tabMain;
private System.Windows.Forms.TabPage tabPageDuty;
private System.Windows.Forms.TabPage tabPageConfig;
private System.Windows.Forms.RichTextBox txtMesg;
private System.Windows.Forms.TabPage tabPagePing;
private System.Windows.Forms.Panel panelBase;
private System.Windows.Forms.Label lblStatusLeft;
}
}