Files
core/ASCOfficeSVGFile/AutoFilesTests/Form1.Designer.cs

181 lines
7.4 KiB
C#

namespace AutoFilesTests
{
partial class Form1
{
/// <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.button1 = new System.Windows.Forms.Button();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.button2 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.Run = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.ListBox();
this.Stop = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(748, 24);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(35, 23);
this.button1.TabIndex = 0;
this.button1.Text = "...";
this.button1.UseVisualStyleBackColor = true;
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(12, 335);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(730, 23);
this.progressBar1.TabIndex = 1;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(12, 24);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(730, 20);
this.textBox1.TabIndex = 2;
this.textBox1.Text = "E:\\tests\\src";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(12, 72);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(730, 20);
this.textBox2.TabIndex = 3;
this.textBox2.Text = "E:\\tests\\result";
//
// button2
//
this.button2.Location = new System.Drawing.Point(748, 71);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(35, 23);
this.button2.TabIndex = 4;
this.button2.Text = "...";
this.button2.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80, 13);
this.label1.TabIndex = 5;
this.label1.Text = "svg source files";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 52);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(118, 13);
this.label2.TabIndex = 6;
this.label2.Text = "svg rendered result files";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 104);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(281, 13);
this.label3.TabIndex = 7;
this.label3.Text = "Status : files cout : 0 success : 0 failed : 0 - complete : %0";
//
// Run
//
this.Run.Location = new System.Drawing.Point(12, 366);
this.Run.Name = "Run";
this.Run.Size = new System.Drawing.Size(75, 23);
this.Run.TabIndex = 8;
this.Run.Text = "Run";
this.Run.UseVisualStyleBackColor = true;
this.Run.Click += new System.EventHandler(this.Run_Click);
//
// listBox1
//
this.listBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
this.listBox1.FormattingEnabled = true;
this.listBox1.Location = new System.Drawing.Point(12, 126);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(730, 199);
this.listBox1.TabIndex = 9;
this.listBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBox1_DrawItem);
//
// Stop
//
this.Stop.Location = new System.Drawing.Point(94, 366);
this.Stop.Name = "Stop";
this.Stop.Size = new System.Drawing.Size(75, 23);
this.Stop.TabIndex = 10;
this.Stop.Text = "Stop";
this.Stop.UseVisualStyleBackColor = true;
this.Stop.Click += new System.EventHandler(this.Stop_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(795, 401);
this.Controls.Add(this.Stop);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.Run);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.button2);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Auto Files Tests";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button Run;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button Stop;
}
}