91 lines
3.9 KiB
C#
91 lines
3.9 KiB
C#
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()
|
||
{
|
||
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.SuspendLayout();
|
||
//
|
||
// 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.Location = new System.Drawing.Point(1, 2);
|
||
this.richTextBox1.Name = "richTextBox1";
|
||
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;
|
||
this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
|
||
//
|
||
// label1
|
||
//
|
||
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";
|
||
this.label1.Size = new System.Drawing.Size(86, 17);
|
||
this.label1.TabIndex = 2;
|
||
this.label1.Text = "Enter键发送:";
|
||
//
|
||
// OnlineChatRender
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
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);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.RichTextBox richTextBox1;
|
||
private System.Windows.Forms.TextBox textBox1;
|
||
private System.Windows.Forms.Label label1;
|
||
}
|
||
}
|