vsto-demo/TestWordAddIn1/ProofreadItem.designer.cs
2023-12-12 16:53:12 +08:00

148 lines
6.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Drawing;
using System.Windows.Forms;
namespace TestWordAddIn1
{
partial class ProofreadItem
{
/// <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.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(18, 10);
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(69, 11);
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(12, 36);
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(222, 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(258, 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, 70);
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(222, 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.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(300, 70);
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;
}
}