This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,218 @@
namespace SliceDBMerge
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.dgSource = new C1.Win.C1FlexGrid.C1FlexGrid();
this.gbSource = new System.Windows.Forms.GroupBox();
this.tbSourceLocation = new System.Windows.Forms.TextBox();
this.btnBrowse = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnDestinationBrowse = new System.Windows.Forms.Button();
this.tbDestination = new System.Windows.Forms.TextBox();
this.dgDestination = new C1.Win.C1FlexGrid.C1FlexGrid();
this.button1 = new System.Windows.Forms.Button();
this.lbSelectAll = new System.Windows.Forms.LinkLabel();
this.lbClearAll = new System.Windows.Forms.LinkLabel();
this.lbInvertSelection = new System.Windows.Forms.LinkLabel();
((System.ComponentModel.ISupportInitialize)(this.dgSource)).BeginInit();
this.gbSource.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgDestination)).BeginInit();
this.SuspendLayout();
//
// dgSource
//
this.dgSource.ColumnInfo = resources.GetString("dgSource.ColumnInfo");
this.dgSource.ExtendLastCol = true;
this.dgSource.Location = new System.Drawing.Point(6, 45);
this.dgSource.Name = "dgSource";
this.dgSource.Rows.Count = 1;
this.dgSource.Rows.DefaultSize = 19;
this.dgSource.Size = new System.Drawing.Size(740, 185);
this.dgSource.StyleInfo = resources.GetString("dgSource.StyleInfo");
this.dgSource.TabIndex = 0;
//
// gbSource
//
this.gbSource.Controls.Add(this.lbInvertSelection);
this.gbSource.Controls.Add(this.lbClearAll);
this.gbSource.Controls.Add(this.lbSelectAll);
this.gbSource.Controls.Add(this.btnBrowse);
this.gbSource.Controls.Add(this.tbSourceLocation);
this.gbSource.Controls.Add(this.dgSource);
this.gbSource.Location = new System.Drawing.Point(13, 12);
this.gbSource.Name = "gbSource";
this.gbSource.Size = new System.Drawing.Size(752, 266);
this.gbSource.TabIndex = 1;
this.gbSource.TabStop = false;
this.gbSource.Text = "Source";
//
// tbSourceLocation
//
this.tbSourceLocation.Location = new System.Drawing.Point(7, 20);
this.tbSourceLocation.Name = "tbSourceLocation";
this.tbSourceLocation.ReadOnly = true;
this.tbSourceLocation.Size = new System.Drawing.Size(636, 20);
this.tbSourceLocation.TabIndex = 1;
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(661, 18);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
this.btnBrowse.TabIndex = 2;
this.btnBrowse.Text = "Browse";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.dgDestination);
this.groupBox1.Controls.Add(this.btnDestinationBrowse);
this.groupBox1.Controls.Add(this.tbDestination);
this.groupBox1.Location = new System.Drawing.Point(13, 327);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(752, 295);
this.groupBox1.TabIndex = 2;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Destination";
//
// btnDestinationBrowse
//
this.btnDestinationBrowse.Location = new System.Drawing.Point(661, 17);
this.btnDestinationBrowse.Name = "btnDestinationBrowse";
this.btnDestinationBrowse.Size = new System.Drawing.Size(75, 23);
this.btnDestinationBrowse.TabIndex = 4;
this.btnDestinationBrowse.Text = "Browse";
this.btnDestinationBrowse.UseVisualStyleBackColor = true;
this.btnDestinationBrowse.Click += new System.EventHandler(this.btnDestinationBrowse_Click);
//
// tbDestination
//
this.tbDestination.Location = new System.Drawing.Point(7, 19);
this.tbDestination.Name = "tbDestination";
this.tbDestination.ReadOnly = true;
this.tbDestination.Size = new System.Drawing.Size(636, 20);
this.tbDestination.TabIndex = 3;
//
// dgDestination
//
this.dgDestination.ColumnInfo = resources.GetString("dgDestination.ColumnInfo");
this.dgDestination.ExtendLastCol = true;
this.dgDestination.Location = new System.Drawing.Point(7, 45);
this.dgDestination.Name = "dgDestination";
this.dgDestination.Rows.Count = 1;
this.dgDestination.Rows.DefaultSize = 19;
this.dgDestination.Size = new System.Drawing.Size(740, 244);
this.dgDestination.StyleInfo = resources.GetString("dgDestination.StyleInfo");
this.dgDestination.TabIndex = 5;
//
// button1
//
this.button1.Location = new System.Drawing.Point(350, 289);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 3;
this.button1.Text = "Merge";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// lbSelectAll
//
this.lbSelectAll.AutoSize = true;
this.lbSelectAll.Location = new System.Drawing.Point(7, 237);
this.lbSelectAll.Name = "lbSelectAll";
this.lbSelectAll.Size = new System.Drawing.Size(51, 13);
this.lbSelectAll.TabIndex = 3;
this.lbSelectAll.TabStop = true;
this.lbSelectAll.Text = "Select All";
this.lbSelectAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbSelectAll_LinkClicked);
//
// lbClearAll
//
this.lbClearAll.AutoSize = true;
this.lbClearAll.Location = new System.Drawing.Point(701, 237);
this.lbClearAll.Name = "lbClearAll";
this.lbClearAll.Size = new System.Drawing.Size(45, 13);
this.lbClearAll.TabIndex = 4;
this.lbClearAll.TabStop = true;
this.lbClearAll.Text = "Clear All";
this.lbClearAll.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbClearAll_LinkClicked);
//
// lbInvertSelection
//
this.lbInvertSelection.AutoSize = true;
this.lbInvertSelection.Location = new System.Drawing.Point(334, 237);
this.lbInvertSelection.Name = "lbInvertSelection";
this.lbInvertSelection.Size = new System.Drawing.Size(81, 13);
this.lbInvertSelection.TabIndex = 5;
this.lbInvertSelection.TabStop = true;
this.lbInvertSelection.Text = "Invert Selection";
this.lbInvertSelection.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lbInvertSelection_LinkClicked);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(777, 670);
this.Controls.Add(this.button1);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.gbSource);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "Form1";
this.Text = "Merge Sensor Databases";
((System.ComponentModel.ISupportInitialize)(this.dgSource)).EndInit();
this.gbSource.ResumeLayout(false);
this.gbSource.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgDestination)).EndInit();
this.ResumeLayout(false);
}
#endregion
private C1.Win.C1FlexGrid.C1FlexGrid dgSource;
private System.Windows.Forms.GroupBox gbSource;
private System.Windows.Forms.Button btnBrowse;
private System.Windows.Forms.TextBox tbSourceLocation;
private System.Windows.Forms.GroupBox groupBox1;
private C1.Win.C1FlexGrid.C1FlexGrid dgDestination;
private System.Windows.Forms.Button btnDestinationBrowse;
private System.Windows.Forms.TextBox tbDestination;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.LinkLabel lbInvertSelection;
private System.Windows.Forms.LinkLabel lbClearAll;
private System.Windows.Forms.LinkLabel lbSelectAll;
}
}