using System.Drawing; using System.Windows.Forms; namespace TestWordAddIn1 { partial class ProofreadItem { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要修改 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.origin = new System.Windows.Forms.Label(); this.type = new System.Windows.Forms.Label(); this.description = new System.Windows.Forms.Label(); this.btnAccept = new System.Windows.Forms.Button(); this.btnIgnore = new System.Windows.Forms.Button(); this.typePanel = new System.Windows.Forms.Panel(); this.processStatus = new System.Windows.Forms.Label(); this.SuspendLayout(); // // origin // this.origin.AutoSize = true; this.origin.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.origin.Location = new System.Drawing.Point(24, 11); this.origin.Name = "origin"; this.origin.Size = new System.Drawing.Size(49, 20); this.origin.TabIndex = 0; this.origin.Text = "origin"; // // type // this.type.AutoSize = true; this.type.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.type.Location = new System.Drawing.Point(83, 12); this.type.Name = "type"; this.type.Size = new System.Drawing.Size(38, 20); this.type.TabIndex = 1; this.type.Text = "type"; // // description // this.description.AutoSize = true; this.description.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.description.Location = new System.Drawing.Point(18, 43); this.description.Name = "description"; this.description.Size = new System.Drawing.Size(84, 20); this.description.TabIndex = 2; this.description.Text = "description"; // // btnAccept // this.btnAccept.BackgroundImage = global::TestWordAddIn1.Properties.Resources.check; this.btnAccept.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.btnAccept.Cursor = System.Windows.Forms.Cursors.Hand; this.btnAccept.Location = new System.Drawing.Point(210, 13); this.btnAccept.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnAccept.Name = "btnAccept"; this.btnAccept.Size = new System.Drawing.Size(26, 26); this.btnAccept.TabIndex = 3; this.btnAccept.UseVisualStyleBackColor = true; this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click); // // btnIgnore // this.btnIgnore.BackgroundImage = global::TestWordAddIn1.Properties.Resources.minus_bold; this.btnIgnore.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.btnIgnore.Cursor = System.Windows.Forms.Cursors.Hand; this.btnIgnore.Location = new System.Drawing.Point(253, 13); this.btnIgnore.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnIgnore.Name = "btnIgnore"; this.btnIgnore.Size = new System.Drawing.Size(26, 26); this.btnIgnore.TabIndex = 4; this.btnIgnore.UseVisualStyleBackColor = true; this.btnIgnore.Click += new System.EventHandler(this.btnIgnore_Click); // // typePanel // this.typePanel.BackColor = System.Drawing.Color.Black; this.typePanel.Location = new System.Drawing.Point(0, 0); this.typePanel.Name = "typePanel"; this.typePanel.Size = new System.Drawing.Size(4, 80); this.typePanel.TabIndex = 5; // // processStatus // this.processStatus.AutoSize = true; this.processStatus.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134))); this.processStatus.Location = new System.Drawing.Point(210, 18); this.processStatus.Name = "processStatus"; this.processStatus.Size = new System.Drawing.Size(50, 20); this.processStatus.TabIndex = 6; this.processStatus.Text = "label1"; // // ProofreadItem // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.WhiteSmoke; this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.Controls.Add(this.processStatus); this.Controls.Add(this.typePanel); this.Controls.Add(this.btnIgnore); this.Controls.Add(this.btnAccept); this.Controls.Add(this.description); this.Controls.Add(this.type); this.Controls.Add(this.origin); this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.Name = "ProofreadItem"; this.Size = new System.Drawing.Size(298, 78); this.ResumeLayout(false); this.PerformLayout(); } #endregion private Label origin; private Label type; private Label description; private Button btnAccept; private Button btnIgnore; private Panel typePanel; private Label processStatus; } }