CommentControl.Designer.cs

00001 namespace CommentControls
00002 {
00003     partial class CommentControl
00004     {
00008         private System.ComponentModel.IContainer components = null;
00009 
00014         protected override void Dispose(bool disposing)
00015         {
00016             if (disposing && (components != null))
00017             {
00018                 components.Dispose();
00019             }
00020             base.Dispose(disposing);
00021         }
00022 
00023         #region Component Designer generated code
00024 
00029         private void InitializeComponent()
00030         {
00031             this.panTop = new System.Windows.Forms.Panel();
00032             this.lblTime = new System.Windows.Forms.Label();
00033             this.lblInfo = new System.Windows.Forms.Label();
00034             this.panBottom = new System.Windows.Forms.Panel();
00035             this.lnkDelete = new System.Windows.Forms.LinkLabel();
00036             this.lnkEdit = new System.Windows.Forms.LinkLabel();
00037             this.lnkReply = new System.Windows.Forms.LinkLabel();
00038             this.txtComment = new System.Windows.Forms.RichTextBox();
00039             this.panContainer = new System.Windows.Forms.Panel();
00040             this.panTop.SuspendLayout();
00041             this.panBottom.SuspendLayout();
00042             this.panContainer.SuspendLayout();
00043             this.SuspendLayout();
00044             // 
00045             // panTop
00046             // 
00047             this.panTop.BackColor = System.Drawing.SystemColors.ActiveCaption;
00048             this.panTop.Controls.Add(this.lblTime);
00049             this.panTop.Controls.Add(this.lblInfo);
00050             this.panTop.Dock = System.Windows.Forms.DockStyle.Top;
00051             this.panTop.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
00052             this.panTop.Location = new System.Drawing.Point(0, 0);
00053             this.panTop.Name = "panTop";
00054             this.panTop.Size = new System.Drawing.Size(452, 13);
00055             this.panTop.TabIndex = 0;
00056             // 
00057             // lblTime
00058             // 
00059             this.lblTime.AutoSize = true;
00060             this.lblTime.Dock = System.Windows.Forms.DockStyle.Right;
00061             this.lblTime.Location = new System.Drawing.Point(412, 0);
00062             this.lblTime.Name = "lblTime";
00063             this.lblTime.Size = new System.Drawing.Size(40, 13);
00064             this.lblTime.TabIndex = 1;
00065             this.lblTime.Text = "lblTime";
00066             // 
00067             // lblInfo
00068             // 
00069             this.lblInfo.AutoSize = true;
00070             this.lblInfo.Dock = System.Windows.Forms.DockStyle.Left;
00071             this.lblInfo.Location = new System.Drawing.Point(0, 0);
00072             this.lblInfo.Name = "lblInfo";
00073             this.lblInfo.Size = new System.Drawing.Size(35, 13);
00074             this.lblInfo.TabIndex = 0;
00075             this.lblInfo.Text = "lblInfo";
00076             // 
00077             // panBottom
00078             // 
00079             this.panBottom.Controls.Add(this.lnkDelete);
00080             this.panBottom.Controls.Add(this.lnkEdit);
00081             this.panBottom.Controls.Add(this.lnkReply);
00082             this.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
00083             this.panBottom.Location = new System.Drawing.Point(0, 148);
00084             this.panBottom.Name = "panBottom";
00085             this.panBottom.Size = new System.Drawing.Size(452, 13);
00086             this.panBottom.TabIndex = 1;
00087             // 
00088             // lnkDelete
00089             // 
00090             this.lnkDelete.AutoSize = true;
00091             this.lnkDelete.Dock = System.Windows.Forms.DockStyle.Left;
00092             this.lnkDelete.Location = new System.Drawing.Point(90, 0);
00093             this.lnkDelete.Name = "lnkDelete";
00094             this.lnkDelete.Size = new System.Drawing.Size(103, 13);
00095             this.lnkDelete.TabIndex = 2;
00096             this.lnkDelete.TabStop = true;
00097             this.lnkDelete.Text = "Delete this comment";
00098             this.lnkDelete.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkDelete_LinkClicked);
00099             // 
00100             // lnkEdit
00101             // 
00102             this.lnkEdit.AutoSize = true;
00103             this.lnkEdit.Dock = System.Windows.Forms.DockStyle.Left;
00104             this.lnkEdit.Location = new System.Drawing.Point(0, 0);
00105             this.lnkEdit.Name = "lnkEdit";
00106             this.lnkEdit.Size = new System.Drawing.Size(90, 13);
00107             this.lnkEdit.TabIndex = 1;
00108             this.lnkEdit.TabStop = true;
00109             this.lnkEdit.Text = "Edit this comment";
00110             this.lnkEdit.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkEdit_LinkClicked);
00111             // 
00112             // lnkReply
00113             // 
00114             this.lnkReply.AutoSize = true;
00115             this.lnkReply.Dock = System.Windows.Forms.DockStyle.Right;
00116             this.lnkReply.Location = new System.Drawing.Point(418, 0);
00117             this.lnkReply.Name = "lnkReply";
00118             this.lnkReply.Size = new System.Drawing.Size(34, 13);
00119             this.lnkReply.TabIndex = 0;
00120             this.lnkReply.TabStop = true;
00121             this.lnkReply.Text = "Reply";
00122             this.lnkReply.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkReply_LinkClicked);
00123             // 
00124             // txtComment
00125             // 
00126             this.txtComment.BackColor = System.Drawing.SystemColors.Window;
00127             this.txtComment.BorderStyle = System.Windows.Forms.BorderStyle.None;
00128             this.txtComment.Dock = System.Windows.Forms.DockStyle.Fill;
00129             this.txtComment.Location = new System.Drawing.Point(0, 0);
00130             this.txtComment.Name = "txtComment";
00131             this.txtComment.ReadOnly = true;
00132             this.txtComment.Size = new System.Drawing.Size(452, 161);
00133             this.txtComment.TabIndex = 2;
00134             this.txtComment.Text = "";
00135             // 
00136             // panContainer
00137             // 
00138             this.panContainer.Controls.Add(this.panBottom);
00139             this.panContainer.Controls.Add(this.panTop);
00140             this.panContainer.Controls.Add(this.txtComment);
00141             this.panContainer.Dock = System.Windows.Forms.DockStyle.Fill;
00142             this.panContainer.Location = new System.Drawing.Point(0, 0);
00143             this.panContainer.Name = "panContainer";
00144             this.panContainer.Size = new System.Drawing.Size(452, 161);
00145             this.panContainer.TabIndex = 4;
00146             // 
00147             // CommentControl
00148             // 
00149             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
00150             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
00151             this.Controls.Add(this.panContainer);
00152             this.Name = "CommentControl";
00153             this.Size = new System.Drawing.Size(452, 161);
00154             this.panTop.ResumeLayout(false);
00155             this.panTop.PerformLayout();
00156             this.panBottom.ResumeLayout(false);
00157             this.panBottom.PerformLayout();
00158             this.panContainer.ResumeLayout(false);
00159             this.ResumeLayout(false);
00160 
00161         }
00162 
00163         #endregion
00164 
00165         private System.Windows.Forms.Panel panTop;
00166         private System.Windows.Forms.Label lblTime;
00167         private System.Windows.Forms.Label lblInfo;
00168         private System.Windows.Forms.Panel panBottom;
00169         private System.Windows.Forms.LinkLabel lnkDelete;
00170         private System.Windows.Forms.LinkLabel lnkEdit;
00171         private System.Windows.Forms.LinkLabel lnkReply;
00172         private System.Windows.Forms.RichTextBox txtComment;
00173         private System.Windows.Forms.Panel panContainer;
00174     }
00175 }

Generated on Thu Dec 21 06:21:56 2006 for SCRAML by  doxygen 1.5.1-p1