107 lines
4.7 KiB
C#
107 lines
4.7 KiB
C#
|
|
namespace CRVM
|
|||
|
|
{
|
|||
|
|
partial class MessageShowForm
|
|||
|
|
{
|
|||
|
|
/// <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.panel1 = new System.Windows.Forms.Panel();
|
|||
|
|
this.btn_OK = new System.Windows.Forms.Button();
|
|||
|
|
this.label_title = new System.Windows.Forms.Label();
|
|||
|
|
this.richTextBox_msg = new System.Windows.Forms.RichTextBox();
|
|||
|
|
this.panel1.SuspendLayout();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// panel1
|
|||
|
|
//
|
|||
|
|
this.panel1.Controls.Add(this.btn_OK);
|
|||
|
|
this.panel1.Controls.Add(this.label_title);
|
|||
|
|
this.panel1.Controls.Add(this.richTextBox_msg);
|
|||
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
|
this.panel1.Location = new System.Drawing.Point(0, 0);
|
|||
|
|
this.panel1.Name = "panel1";
|
|||
|
|
this.panel1.Size = new System.Drawing.Size(384, 262);
|
|||
|
|
this.panel1.TabIndex = 0;
|
|||
|
|
//
|
|||
|
|
// btn_OK
|
|||
|
|
//
|
|||
|
|
this.btn_OK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|||
|
|
this.btn_OK.Font = new System.Drawing.Font("微软雅黑", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
|
this.btn_OK.Location = new System.Drawing.Point(152, 218);
|
|||
|
|
this.btn_OK.Name = "btn_OK";
|
|||
|
|
this.btn_OK.Size = new System.Drawing.Size(80, 32);
|
|||
|
|
this.btn_OK.TabIndex = 3;
|
|||
|
|
this.btn_OK.Text = "确定";
|
|||
|
|
this.btn_OK.UseVisualStyleBackColor = true;
|
|||
|
|
this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click);
|
|||
|
|
//
|
|||
|
|
// label_title
|
|||
|
|
//
|
|||
|
|
this.label_title.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|||
|
|
this.label_title.Location = new System.Drawing.Point(146, 9);
|
|||
|
|
this.label_title.Name = "label_title";
|
|||
|
|
this.label_title.Size = new System.Drawing.Size(100, 29);
|
|||
|
|
this.label_title.TabIndex = 1;
|
|||
|
|
this.label_title.Text = "label1";
|
|||
|
|
this.label_title.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|||
|
|
//
|
|||
|
|
// richTextBox_msg
|
|||
|
|
//
|
|||
|
|
this.richTextBox_msg.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|||
|
|
this.richTextBox_msg.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
|
this.richTextBox_msg.Location = new System.Drawing.Point(12, 57);
|
|||
|
|
this.richTextBox_msg.Name = "richTextBox_msg";
|
|||
|
|
this.richTextBox_msg.ReadOnly = true;
|
|||
|
|
this.richTextBox_msg.Size = new System.Drawing.Size(360, 105);
|
|||
|
|
this.richTextBox_msg.TabIndex = 0;
|
|||
|
|
this.richTextBox_msg.Text = "";
|
|||
|
|
//
|
|||
|
|
// MessageShowForm
|
|||
|
|
//
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(384, 262);
|
|||
|
|
this.Controls.Add(this.panel1);
|
|||
|
|
this.MaximizeBox = false;
|
|||
|
|
this.MaximumSize = new System.Drawing.Size(400, 300);
|
|||
|
|
this.MinimizeBox = false;
|
|||
|
|
this.MinimumSize = new System.Drawing.Size(400, 300);
|
|||
|
|
this.Name = "MessageShowForm";
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Load += new System.EventHandler(this.MessageShowForm_Load);
|
|||
|
|
this.panel1.ResumeLayout(false);
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.Panel panel1;
|
|||
|
|
private System.Windows.Forms.RichTextBox richTextBox_msg;
|
|||
|
|
private System.Windows.Forms.Label label_title;
|
|||
|
|
private System.Windows.Forms.Button btn_OK;
|
|||
|
|
}
|
|||
|
|
}
|