benchtop-to-pdf/BTD-PDF/ConfigToPDF.Designer.cs

121 lines
5.0 KiB
C#

namespace BTD_PDF {
partial class ConfigToPDF {
/// <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.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.btnFile = new System.Windows.Forms.Button();
this.lblFilename = new System.Windows.Forms.Label();
this.btnParse = new System.Windows.Forms.Button();
this.comboParser = new System.Windows.Forms.ComboBox();
this.lblContents = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
//
// btnFile
//
this.btnFile.AllowDrop = true;
this.btnFile.Location = new System.Drawing.Point(12, 12);
this.btnFile.Name = "btnFile";
this.btnFile.Size = new System.Drawing.Size(122, 36);
this.btnFile.TabIndex = 0;
this.btnFile.Text = "Open File";
this.btnFile.UseVisualStyleBackColor = true;
//
// lblFilename
//
this.lblFilename.AutoSize = true;
this.lblFilename.Location = new System.Drawing.Point(140, 23);
this.lblFilename.Name = "lblFilename";
this.lblFilename.Size = new System.Drawing.Size(16, 15);
this.lblFilename.TabIndex = 1;
this.lblFilename.Text = "...";
//
// btnParse
//
this.btnParse.Enabled = false;
this.btnParse.Location = new System.Drawing.Point(12, 92);
this.btnParse.Name = "btnParse";
this.btnParse.Size = new System.Drawing.Size(122, 36);
this.btnParse.TabIndex = 2;
this.btnParse.Text = "Parse";
this.btnParse.UseVisualStyleBackColor = true;
this.btnParse.Click += new System.EventHandler(this.btnParse_Click);
//
// comboParser
//
this.comboParser.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboParser.FormattingEnabled = true;
this.comboParser.Items.AddRange(new object[] {
"Program Config",
"Hardware Calibration Report",
"Transducer Verify"});
this.comboParser.Location = new System.Drawing.Point(12, 54);
this.comboParser.Name = "comboParser";
this.comboParser.Size = new System.Drawing.Size(176, 23);
this.comboParser.TabIndex = 3;
this.comboParser.SelectedIndexChanged += new System.EventHandler(this.comboParser_SelectedIndexChanged);
//
// lblContents
//
this.lblContents.AutoSize = true;
this.lblContents.Location = new System.Drawing.Point(12, 144);
this.lblContents.Name = "lblContents";
this.lblContents.Size = new System.Drawing.Size(16, 15);
this.lblContents.TabIndex = 4;
this.lblContents.Text = "...";
//
// ConfigToPDF
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.lblContents);
this.Controls.Add(this.comboParser);
this.Controls.Add(this.btnParse);
this.Controls.Add(this.lblFilename);
this.Controls.Add(this.btnFile);
this.Name = "ConfigToPDF";
this.Text = "ConfigToPDF";
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.ConfigToPDF_DragDrop);
this.DragEnter += new System.Windows.Forms.DragEventHandler(this.ConfigToPDF_DragEnter);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private OpenFileDialog openFileDialog1;
private Button btnFile;
private Label lblFilename;
private Button btnParse;
private ComboBox comboParser;
private Label lblContents;
}
}