MainForm.Designer.cs
上传用户:szltgg
上传日期:2019-05-16
资源大小:604k
文件大小:5k
源码类别:

Telnet服务器

开发平台:

C#

  1. namespace Poderosa
  2. {
  3.     partial class MainForm
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// Clean up any resources being used.
  11.         /// </summary>
  12.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows Form Designer generated code
  22.         /// <summary>
  23.         /// Required method for Designer support - do not modify
  24.         /// the contents of this method with the code editor.
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.components = new System.ComponentModel.Container();
  29.             this.tabControl1 = new System.Windows.Forms.TabControl();
  30.             this.tabPage1 = new System.Windows.Forms.TabPage();
  31.             this.tabPage2 = new System.Windows.Forms.TabPage();
  32.             this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
  33.             this.connectSSHToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34.             this.tabControl1.SuspendLayout();
  35.             this.contextMenuStrip1.SuspendLayout();
  36.             this.SuspendLayout();
  37.             // 
  38.             // tabControl1
  39.             // 
  40.             this.tabControl1.ContextMenuStrip = this.contextMenuStrip1;
  41.             this.tabControl1.Controls.Add(this.tabPage1);
  42.             this.tabControl1.Controls.Add(this.tabPage2);
  43.             this.tabControl1.Location = new System.Drawing.Point(12, 52);
  44.             this.tabControl1.Name = "tabControl1";
  45.             this.tabControl1.SelectedIndex = 0;
  46.             this.tabControl1.Size = new System.Drawing.Size(280, 299);
  47.             this.tabControl1.TabIndex = 0;
  48.             // 
  49.             // tabPage1
  50.             // 
  51.             this.tabPage1.BackColor = System.Drawing.Color.Red;
  52.             this.tabPage1.Location = new System.Drawing.Point(4, 22);
  53.             this.tabPage1.Name = "tabPage1";
  54.             this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
  55.             this.tabPage1.Size = new System.Drawing.Size(272, 273);
  56.             this.tabPage1.TabIndex = 0;
  57.             this.tabPage1.Text = "tabPage1";
  58.             // 
  59.             // tabPage2
  60.             // 
  61.             this.tabPage2.Location = new System.Drawing.Point(4, 22);
  62.             this.tabPage2.Name = "tabPage2";
  63.             this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  64.             this.tabPage2.Size = new System.Drawing.Size(192, 74);
  65.             this.tabPage2.TabIndex = 1;
  66.             this.tabPage2.Text = "tabPage2";
  67.             this.tabPage2.UseVisualStyleBackColor = true;
  68.             // 
  69.             // contextMenuStrip1
  70.             // 
  71.             this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  72.             this.connectSSHToolStripMenuItem});
  73.             this.contextMenuStrip1.Name = "contextMenuStrip1";
  74.             this.contextMenuStrip1.Size = new System.Drawing.Size(148, 26);
  75.             // 
  76.             // connectSSHToolStripMenuItem
  77.             // 
  78.             this.connectSSHToolStripMenuItem.Name = "connectSSHToolStripMenuItem";
  79.             this.connectSSHToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  80.             this.connectSSHToolStripMenuItem.Text = "Connect SSH";
  81.             this.connectSSHToolStripMenuItem.Click += new System.EventHandler(this.connectSSHToolStripMenuItem_Click);
  82.             // 
  83.             // MainForm
  84.             // 
  85.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  86.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87.             this.ClientSize = new System.Drawing.Size(568, 454);
  88.             this.Controls.Add(this.tabControl1);
  89.             this.Name = "MainForm";
  90.             this.Text = "MainForm";
  91.             this.tabControl1.ResumeLayout(false);
  92.             this.contextMenuStrip1.ResumeLayout(false);
  93.             this.ResumeLayout(false);
  94.         }
  95.         #endregion
  96.         private System.Windows.Forms.TabControl tabControl1;
  97.         private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
  98.         private System.Windows.Forms.ToolStripMenuItem connectSSHToolStripMenuItem;
  99.         private System.Windows.Forms.TabPage tabPage1;
  100.         private System.Windows.Forms.TabPage tabPage2;
  101.     }
  102. }