Files
ClientServerProject/软件系统客户端模版/UIControls/OnlineChatRender.Designer.cs

94 lines
4.2 KiB
C#
Raw Normal View History

namespace .UIControls
{
partial class OnlineChatRender
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
2017-05-12 22:26:29 +08:00
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
2017-05-12 22:26:29 +08:00
// richTextBox1
//
this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.richTextBox1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
2017-05-12 22:26:29 +08:00
this.richTextBox1.Location = new System.Drawing.Point(1, 2);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.ReadOnly = true;
2017-05-12 22:26:29 +08:00
this.richTextBox1.Size = new System.Drawing.Size(633, 373);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = "";
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBox1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox1.Location = new System.Drawing.Point(3, 401);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(629, 26);
this.textBox1.TabIndex = 1;
2017-05-13 23:00:15 +08:00
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
2017-05-12 22:26:29 +08:00
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
2017-05-12 22:26:29 +08:00
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(-1, 381);
this.label1.Name = "label1";
2017-05-13 23:00:15 +08:00
this.label1.Size = new System.Drawing.Size(86, 17);
2017-05-12 22:26:29 +08:00
this.label1.TabIndex = 2;
2017-05-13 23:00:15 +08:00
this.label1.Text = "Enter键发送";
2017-05-12 22:26:29 +08:00
//
// OnlineChatRender
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2017-05-12 22:26:29 +08:00
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.richTextBox1);
this.Name = "OnlineChatRender";
this.Size = new System.Drawing.Size(635, 429);
this.Load += new System.EventHandler(this.OnlineChatRender_Load);
this.ResumeLayout(false);
2017-05-12 22:26:29 +08:00
this.PerformLayout();
}
#endregion
2017-05-12 22:26:29 +08:00
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label1;
}
}