dsneditor/EsOdbcDsnEditorLauncher/Launcher.Designer.cs (47 lines of code) (raw):
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
namespace EsOdbcDsnEditorLauncher
{
partial class Launcher
{
/// <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.LaunchButton = new System.Windows.Forms.Button();
this.textLog = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// LaunchButton
//
this.LaunchButton.Location = new System.Drawing.Point(12, 12);
this.LaunchButton.Name = "LaunchButton";
this.LaunchButton.Size = new System.Drawing.Size(619, 52);
this.LaunchButton.TabIndex = 0;
this.LaunchButton.Text = "Launch";
this.LaunchButton.UseVisualStyleBackColor = true;
this.LaunchButton.Click += new System.EventHandler(this.LaunchButton_Click);
//
// textLog
//
this.textLog.Location = new System.Drawing.Point(12, 70);
this.textLog.Multiline = true;
this.textLog.Name = "textLog";
this.textLog.Size = new System.Drawing.Size(619, 409);
this.textLog.TabIndex = 1;
//
// Launcher
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(643, 491);
this.Controls.Add(this.textLog);
this.Controls.Add(this.LaunchButton);
this.Name = "Launcher";
this.Text = "DSN Launcher";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button LaunchButton;
private System.Windows.Forms.TextBox textLog;
}
}