DummyOutputWindow.Designer.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:3k
源码类别:

C#编程

开发平台:

C#

  1. namespace DockSample
  2. {
  3.     partial class DummyOutputWindow
  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.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DummyOutputWindow));
  29.             this.comboBox = new System.Windows.Forms.ComboBox();
  30.             this.textBox1 = new System.Windows.Forms.TextBox();
  31.             this.SuspendLayout();
  32.             // 
  33.             // comboBox
  34.             // 
  35.             this.comboBox.Dock = System.Windows.Forms.DockStyle.Top;
  36.             this.comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  37.             this.comboBox.Items.AddRange(new object[] {
  38.             "Build"});
  39.             this.comboBox.Location = new System.Drawing.Point(0, 2);
  40.             this.comboBox.Name = "comboBox";
  41.             this.comboBox.Size = new System.Drawing.Size(255, 20);
  42.             this.comboBox.TabIndex = 1;
  43.             // 
  44.             // textBox1
  45.             // 
  46.             this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  47.             this.textBox1.Location = new System.Drawing.Point(0, 22);
  48.             this.textBox1.Multiline = true;
  49.             this.textBox1.Name = "textBox1";
  50.             this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  51.             this.textBox1.Size = new System.Drawing.Size(255, 341);
  52.             this.textBox1.TabIndex = 2;
  53.             this.textBox1.Text = resources.GetString("textBox1.Text");
  54.             this.textBox1.WordWrap = false;
  55.             // 
  56.             // DummyOutputWindow
  57.             // 
  58.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  59.             this.ClientSize = new System.Drawing.Size(255, 365);
  60.             this.Controls.Add(this.textBox1);
  61.             this.Controls.Add(this.comboBox);
  62.             this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  63.             this.HideOnClose = true;
  64.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  65.             this.Name = "DummyOutputWindow";
  66.             this.Padding = new System.Windows.Forms.Padding(0, 2, 0, 2);
  67.             this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockBottomAutoHide;
  68.             this.TabText = "Output";
  69.             this.Text = "Output";
  70.             this.ResumeLayout(false);
  71.             this.PerformLayout();
  72. }
  73. #endregion
  74. private System.Windows.Forms.ComboBox comboBox;
  75. private System.Windows.Forms.TextBox textBox1;
  76.     }
  77. }