1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- namespace Tps_LQ_Transmitter.views
- {
- partial class FrmMsg
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.richTextBox1 = new System.Windows.Forms.RichTextBox();
- this.BtnClear = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // richTextBox1
- //
- this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.richTextBox1.Location = new System.Drawing.Point(0, 0);
- this.richTextBox1.Name = "richTextBox1";
- this.richTextBox1.Size = new System.Drawing.Size(850, 522);
- this.richTextBox1.TabIndex = 0;
- this.richTextBox1.Text = "";
- //
- // BtnClear
- //
- this.BtnClear.Location = new System.Drawing.Point(678, 540);
- this.BtnClear.Name = "BtnClear";
- this.BtnClear.Size = new System.Drawing.Size(138, 43);
- this.BtnClear.TabIndex = 1;
- this.BtnClear.Text = "清空消息";
- this.BtnClear.UseVisualStyleBackColor = true;
- this.BtnClear.Click += new System.EventHandler(this.BtnClear_Click);
- //
- // FrmMsg
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(850, 601);
- this.Controls.Add(this.BtnClear);
- this.Controls.Add(this.richTextBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "FrmMsg";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "消息窗口";
- this.VisibleChanged += new System.EventHandler(this.FrmMsg_VisibleChanged);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.RichTextBox richTextBox1;
- private System.Windows.Forms.Button BtnClear;
- }
- }
|