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

Telnet服务器

开发平台:

C#

  1. namespace C_Sharp_Usage_Eample
  2. {
  3.     partial class Form1
  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.button1 = new System.Windows.Forms.Button();
  29.             this.servertextBox1 = new System.Windows.Forms.TextBox();
  30.             this.passtextBox2 = new System.Windows.Forms.TextBox();
  31.             this.usertextBox3 = new System.Windows.Forms.TextBox();
  32.             this.label1 = new System.Windows.Forms.Label();
  33.             this.label2 = new System.Windows.Forms.Label();
  34.             this.label3 = new System.Windows.Forms.Label();
  35.             this.terminalControl1 = new WalburySoftware.TerminalControl();
  36.             this.button2 = new System.Windows.Forms.Button();
  37.             this.SuspendLayout();
  38.             // 
  39.             // button1
  40.             // 
  41.             this.button1.Location = new System.Drawing.Point(143, 110);
  42.             this.button1.Name = "button1";
  43.             this.button1.Size = new System.Drawing.Size(75, 23);
  44.             this.button1.TabIndex = 1;
  45.             this.button1.Text = "Connect";
  46.             this.button1.UseVisualStyleBackColor = true;
  47.             this.button1.Click += new System.EventHandler(this.button1_Click);
  48.             // 
  49.             // servertextBox1
  50.             // 
  51.             this.servertextBox1.Location = new System.Drawing.Point(12, 35);
  52.             this.servertextBox1.Name = "servertextBox1";
  53.             this.servertextBox1.Size = new System.Drawing.Size(100, 20);
  54.             this.servertextBox1.TabIndex = 0;
  55.             // 
  56.             // passtextBox2
  57.             // 
  58.             this.passtextBox2.Location = new System.Drawing.Point(12, 113);
  59.             this.passtextBox2.Name = "passtextBox2";
  60.             this.passtextBox2.PasswordChar = '*';
  61.             this.passtextBox2.Size = new System.Drawing.Size(100, 20);
  62.             this.passtextBox2.TabIndex = 2;
  63.             // 
  64.             // usertextBox3
  65.             // 
  66.             this.usertextBox3.Location = new System.Drawing.Point(12, 74);
  67.             this.usertextBox3.Name = "usertextBox3";
  68.             this.usertextBox3.Size = new System.Drawing.Size(100, 20);
  69.             this.usertextBox3.TabIndex = 1;
  70.             // 
  71.             // label1
  72.             // 
  73.             this.label1.AutoSize = true;
  74.             this.label1.Location = new System.Drawing.Point(12, 58);
  75.             this.label1.Name = "label1";
  76.             this.label1.Size = new System.Drawing.Size(57, 13);
  77.             this.label1.TabIndex = 5;
  78.             this.label1.Text = "UserName";
  79.             // 
  80.             // label2
  81.             // 
  82.             this.label2.AutoSize = true;
  83.             this.label2.Location = new System.Drawing.Point(12, 97);
  84.             this.label2.Name = "label2";
  85.             this.label2.Size = new System.Drawing.Size(53, 13);
  86.             this.label2.TabIndex = 6;
  87.             this.label2.Text = "Password";
  88.             // 
  89.             // label3
  90.             // 
  91.             this.label3.AutoSize = true;
  92.             this.label3.Location = new System.Drawing.Point(12, 18);
  93.             this.label3.Name = "label3";
  94.             this.label3.Size = new System.Drawing.Size(63, 13);
  95.             this.label3.TabIndex = 7;
  96.             this.label3.Text = "SSH Server";
  97.             // 
  98.             // terminalControl1
  99.             // 
  100.             this.terminalControl1.AuthType = Poderosa.ConnectionParam.AuthType.Password;
  101.             
  102.             this.terminalControl1.Host = "";
  103.             this.terminalControl1.IdentifyFile = "";
  104.             this.terminalControl1.Location = new System.Drawing.Point(12, 139);
  105.             this.terminalControl1.Method = WalburySoftware.ConnectionMethod.Telnet;
  106.             this.terminalControl1.Name = "terminalControl1";
  107.             this.terminalControl1.Password = "";
  108.             this.terminalControl1.Size = new System.Drawing.Size(622, 289);
  109.             this.terminalControl1.TabIndex = 0;
  110.             this.terminalControl1.Text = "terminalControl1";
  111.             this.terminalControl1.UserName = "";
  112.             // 
  113.             // button2
  114.             // 
  115.             this.button2.Location = new System.Drawing.Point(262, 110);
  116.             this.button2.Name = "button2";
  117.             this.button2.Size = new System.Drawing.Size(75, 23);
  118.             this.button2.TabIndex = 8;
  119.             this.button2.Text = "edit display";
  120.             this.button2.UseVisualStyleBackColor = true;
  121.             this.button2.Click += new System.EventHandler(this.button2_Click);
  122.             // 
  123.             // Form1
  124.             // 
  125.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  126.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  127.             this.ClientSize = new System.Drawing.Size(646, 440);
  128.             this.Controls.Add(this.button2);
  129.             this.Controls.Add(this.label3);
  130.             this.Controls.Add(this.label2);
  131.             this.Controls.Add(this.label1);
  132.             this.Controls.Add(this.usertextBox3);
  133.             this.Controls.Add(this.passtextBox2);
  134.             this.Controls.Add(this.servertextBox1);
  135.             this.Controls.Add(this.button1);
  136.             this.Controls.Add(this.terminalControl1);
  137.             this.Name = "Form1";
  138.             this.Text = "Form1";
  139.             this.ResumeLayout(false);
  140.             this.PerformLayout();
  141.         }
  142.         #endregion
  143.         private WalburySoftware.TerminalControl terminalControl1;
  144.         private System.Windows.Forms.Button button1;
  145.         private System.Windows.Forms.TextBox servertextBox1;
  146.         private System.Windows.Forms.TextBox passtextBox2;
  147.         private System.Windows.Forms.TextBox usertextBox3;
  148.         private System.Windows.Forms.Label label1;
  149.         private System.Windows.Forms.Label label2;
  150.         private System.Windows.Forms.Label label3;
  151.         private System.Windows.Forms.Button button2;
  152.     }
  153. }