80 lines
3.1 KiB
C#
80 lines
3.1 KiB
C#
namespace TestWordAddIn1
|
||
{
|
||
partial class ProofreadPanel
|
||
{
|
||
/// <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.button1 = new System.Windows.Forms.Button();
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.SuspendLayout();
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.BackColor = System.Drawing.SystemColors.HotTrack;
|
||
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||
this.button1.ForeColor = System.Drawing.Color.White;
|
||
this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
||
this.button1.Location = new System.Drawing.Point(16, 14);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(117, 31);
|
||
this.button1.TabIndex = 0;
|
||
this.button1.Text = "开始校对";
|
||
this.button1.UseVisualStyleBackColor = false;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.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.panel1.AutoScroll = true;
|
||
this.panel1.Location = new System.Drawing.Point(16, 61);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(304, 606);
|
||
this.panel1.TabIndex = 1;
|
||
//
|
||
// ProofreadPanel
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.BackColor = System.Drawing.Color.White;
|
||
this.Controls.Add(this.panel1);
|
||
this.Controls.Add(this.button1);
|
||
this.Name = "ProofreadPanel";
|
||
this.Size = new System.Drawing.Size(340, 686);
|
||
this.Load += new System.EventHandler(this.ProofreadPanel_Load);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Panel panel1;
|
||
}
|
||
}
|