WinFormTools/WinformDevFramework/Pages/System/FrmMessage.Designer.cs

236 lines
11 KiB
C#

namespace WinformDevFramework
{
partial class FrmMessage
{
/// <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.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.label2 = new System.Windows.Forms.Label();
this.txtMessageContent = new System.Windows.Forms.RichTextBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.panel2 = new System.Windows.Forms.Panel();
this.dataGridView2 = new System.Windows.Forms.DataGridView();
this.panel1 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnSendMessage = new System.Windows.Forms.Button();
this.btnSearch = new System.Windows.Forms.Button();
this.txtUserName = new System.Windows.Forms.TextBox();
this.txtMessageTitle = new System.Windows.Forms.RichTextBox();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.groupBox6.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.txtMessageTitle);
this.splitContainer1.Panel1.Controls.Add(this.label2);
this.splitContainer1.Panel1.Controls.Add(this.txtMessageContent);
this.splitContainer1.Panel1.Controls.Add(this.label1);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.groupBox6);
this.splitContainer1.Size = new System.Drawing.Size(800, 450);
this.splitContainer1.SplitterDistance = 266;
this.splitContainer1.TabIndex = 0;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(101, 143);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(56, 17);
this.label2.TabIndex = 3;
this.label2.Text = "消息内容";
//
// txtMessageContent
//
this.txtMessageContent.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtMessageContent.Location = new System.Drawing.Point(21, 163);
this.txtMessageContent.Name = "txtMessageContent";
this.txtMessageContent.Size = new System.Drawing.Size(228, 275);
this.txtMessageContent.TabIndex = 2;
this.txtMessageContent.Text = "";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(101, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 17);
this.label1.TabIndex = 0;
this.label1.Text = "消息标题";
//
// groupBox6
//
this.groupBox6.Controls.Add(this.panel2);
this.groupBox6.Controls.Add(this.panel1);
this.groupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox6.Location = new System.Drawing.Point(0, 0);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(530, 450);
this.groupBox6.TabIndex = 4;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "接收人";
//
// panel2
//
this.panel2.Controls.Add(this.dataGridView2);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(3, 46);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(524, 401);
this.panel2.TabIndex = 2;
//
// dataGridView2
//
this.dataGridView2.AllowUserToDeleteRows = false;
this.dataGridView2.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridView2.BackgroundColor = System.Drawing.SystemColors.Control;
this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView2.Dock = System.Windows.Forms.DockStyle.Fill;
this.dataGridView2.GridColor = System.Drawing.SystemColors.Control;
this.dataGridView2.Location = new System.Drawing.Point(0, 0);
this.dataGridView2.Name = "dataGridView2";
this.dataGridView2.RowHeadersVisible = false;
this.dataGridView2.RowTemplate.Height = 25;
this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dataGridView2.Size = new System.Drawing.Size(524, 401);
this.dataGridView2.TabIndex = 0;
//
// panel1
//
this.panel1.Controls.Add(this.btnClose);
this.panel1.Controls.Add(this.btnSendMessage);
this.panel1.Controls.Add(this.btnSearch);
this.panel1.Controls.Add(this.txtUserName);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(3, 19);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(524, 27);
this.panel1.TabIndex = 1;
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(229, 3);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(44, 23);
this.btnClose.TabIndex = 3;
this.btnClose.Text = "关闭";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnSendMessage
//
this.btnSendMessage.Location = new System.Drawing.Point(180, 3);
this.btnSendMessage.Name = "btnSendMessage";
this.btnSendMessage.Size = new System.Drawing.Size(46, 23);
this.btnSendMessage.TabIndex = 2;
this.btnSendMessage.Text = "发送";
this.btnSendMessage.UseVisualStyleBackColor = true;
this.btnSendMessage.Click += new System.EventHandler(this.btnSendMessage_Click);
//
// btnSearch
//
this.btnSearch.Location = new System.Drawing.Point(127, 3);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(50, 23);
this.btnSearch.TabIndex = 1;
this.btnSearch.Text = "搜索";
this.btnSearch.UseVisualStyleBackColor = true;
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(3, 3);
this.txtUserName.Name = "txtUserName";
this.txtUserName.PlaceholderText = "登录名";
this.txtUserName.Size = new System.Drawing.Size(123, 23);
this.txtUserName.TabIndex = 0;
//
// txtMessageTitle
//
this.txtMessageTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtMessageTitle.Location = new System.Drawing.Point(19, 37);
this.txtMessageTitle.Name = "txtMessageTitle";
this.txtMessageTitle.Size = new System.Drawing.Size(228, 103);
this.txtMessageTitle.TabIndex = 4;
this.txtMessageTitle.Text = "";
//
// FrmMessage
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.splitContainer1);
this.Name = "FrmMessage";
this.Text = "FrmMessage";
this.Load += new System.EventHandler(this.FrmMessage_Load);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.groupBox6.ResumeLayout(false);
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private SplitContainer splitContainer1;
private Label label2;
private RichTextBox txtMessageContent;
private Label label1;
private GroupBox groupBox6;
private Panel panel2;
private DataGridView dataGridView2;
private Panel panel1;
private Button btnSendMessage;
private Button btnSearch;
private TextBox txtUserName;
private Button btnClose;
private RichTextBox txtMessageTitle;
}
}