FrmMsg.Designer.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. namespace Tps_LQ_Transmitter.views
  2. {
  3. partial class FrmMsg
  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.richTextBox1 = new System.Windows.Forms.RichTextBox();
  29. this.BtnClear = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // richTextBox1
  33. //
  34. this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Top;
  35. this.richTextBox1.Location = new System.Drawing.Point(0, 0);
  36. this.richTextBox1.Name = "richTextBox1";
  37. this.richTextBox1.Size = new System.Drawing.Size(850, 522);
  38. this.richTextBox1.TabIndex = 0;
  39. this.richTextBox1.Text = "";
  40. //
  41. // BtnClear
  42. //
  43. this.BtnClear.Location = new System.Drawing.Point(678, 540);
  44. this.BtnClear.Name = "BtnClear";
  45. this.BtnClear.Size = new System.Drawing.Size(138, 43);
  46. this.BtnClear.TabIndex = 1;
  47. this.BtnClear.Text = "清空消息";
  48. this.BtnClear.UseVisualStyleBackColor = true;
  49. this.BtnClear.Click += new System.EventHandler(this.BtnClear_Click);
  50. //
  51. // FrmMsg
  52. //
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.ClientSize = new System.Drawing.Size(850, 601);
  56. this.Controls.Add(this.BtnClear);
  57. this.Controls.Add(this.richTextBox1);
  58. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  59. this.MaximizeBox = false;
  60. this.MinimizeBox = false;
  61. this.Name = "FrmMsg";
  62. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  63. this.Text = "消息窗口";
  64. this.VisibleChanged += new System.EventHandler(this.FrmMsg_VisibleChanged);
  65. this.ResumeLayout(false);
  66. }
  67. #endregion
  68. private System.Windows.Forms.RichTextBox richTextBox1;
  69. private System.Windows.Forms.Button BtnClear;
  70. }
  71. }