Files
DP44/Common/DTS.Common.Serialization/TDM/TDMParameterDlg.Designer.cs
2026-04-17 14:55:32 -04:00

256 lines
13 KiB
C#

namespace DTS.Serialization.TDM
{
partial class TDMParameterDlg
{
/// <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.components = new System.ComponentModel.Container();
this.tblLayout = new System.Windows.Forms.TableLayoutPanel();
this.label1 = new System.Windows.Forms.Label();
this.btnBrowse = new System.Windows.Forms.Button();
this.tbLocation = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.tbStart = new System.Windows.Forms.TextBox();
this.tbStop = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.tblLayout.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// tblLayout
//
this.tblLayout.ColumnCount = 4;
this.tblLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tblLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tblLayout.Controls.Add(this.label1, 0, 0);
this.tblLayout.Controls.Add(this.btnBrowse, 3, 0);
this.tblLayout.Controls.Add(this.tbLocation, 1, 0);
this.tblLayout.Controls.Add(this.label2, 0, 2);
this.tblLayout.Controls.Add(this.label3, 0, 1);
this.tblLayout.Controls.Add(this.tbStart, 1, 2);
this.tblLayout.Controls.Add(this.tbStop, 1, 3);
this.tblLayout.Controls.Add(this.label4, 0, 3);
this.tblLayout.Controls.Add(this.tableLayoutPanel1, 0, 4);
this.tblLayout.Controls.Add(this.label5, 2, 2);
this.tblLayout.Controls.Add(this.label6, 2, 3);
this.tblLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.tblLayout.Location = new System.Drawing.Point(0, 0);
this.tblLayout.Name = "tblLayout";
this.tblLayout.RowCount = 5;
this.tblLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblLayout.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tblLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tblLayout.Size = new System.Drawing.Size(511, 136);
this.tblLayout.TabIndex = 0;
//
// label1
//
this.label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(48, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Location";
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(433, 3);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
this.btnBrowse.TabIndex = 1;
this.btnBrowse.Text = "Browse";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// tbLocation
//
this.tbLocation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.tblLayout.SetColumnSpan(this.tbLocation, 2);
this.tbLocation.Location = new System.Drawing.Point(57, 4);
this.tbLocation.Name = "tbLocation";
this.tbLocation.Size = new System.Drawing.Size(370, 20);
this.tbLocation.TabIndex = 2;
//
// label2
//
this.label2.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Start";
//
// label3
//
this.label3.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.label3.AutoSize = true;
this.tblLayout.SetColumnSpan(this.label3, 2);
this.label3.Location = new System.Drawing.Point(3, 29);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(158, 13);
this.label3.TabIndex = 4;
this.label3.Text = "Start and Stop are relative to T0";
//
// tbStart
//
this.tbStart.Location = new System.Drawing.Point(57, 45);
this.tbStart.Name = "tbStart";
this.tbStart.Size = new System.Drawing.Size(100, 20);
this.tbStart.TabIndex = 5;
this.tbStart.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// tbStop
//
this.tbStop.Location = new System.Drawing.Point(57, 71);
this.tbStop.Name = "tbStop";
this.tbStop.Size = new System.Drawing.Size(100, 20);
this.tbStop.TabIndex = 6;
this.tbStop.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label4
//
this.label4.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(3, 74);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(29, 13);
this.label4.TabIndex = 7;
this.label4.Text = "Stop";
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel1.ColumnCount = 2;
this.tblLayout.SetColumnSpan(this.tableLayoutPanel1, 4);
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Controls.Add(this.btnOK, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.btnCancel, 1, 0);
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 97);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(505, 36);
this.tableLayoutPanel1.TabIndex = 8;
//
// btnOK
//
this.btnOK.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.btnOK.Location = new System.Drawing.Point(174, 6);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 0;
this.btnOK.Text = "&OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.btnCancel.Location = new System.Drawing.Point(255, 6);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "&Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// label5
//
this.label5.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(167, 48);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(26, 13);
this.label5.TabIndex = 9;
this.label5.Text = "(ms)";
//
// label6
//
this.label6.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(167, 74);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(26, 13);
this.label6.TabIndex = 10;
this.label6.Text = "(ms)";
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// TDMParameterDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(246)))), ((int)(((byte)(253)))));
this.ClientSize = new System.Drawing.Size(511, 136);
this.Controls.Add(this.tblLayout);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "TDMParameterDlg";
this.Text = "TDM Export Parameters";
this.tblLayout.ResumeLayout(false);
this.tblLayout.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TableLayoutPanel tblLayout;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.TextBox tbLocation;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox tbStart;
private System.Windows.Forms.TextBox tbStop;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.ErrorProvider errorProvider1;
}
}