137 lines
5.7 KiB
C#
137 lines
5.7 KiB
C#
namespace Eugen.ESystem.Windows.Forms
|
|
{
|
|
partial class AboutBox
|
|
{
|
|
/// <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(AboutBox));
|
|
this.pictureBox = new System.Windows.Forms.PictureBox();
|
|
this.labelProgramName = new System.Windows.Forms.Label();
|
|
this.labelVersion = new System.Windows.Forms.Label();
|
|
this.labelCopyright = new System.Windows.Forms.Label();
|
|
this.labelDisclaimer = new System.Windows.Forms.Label();
|
|
this.textBox = new System.Windows.Forms.TextBox();
|
|
this.buttonExport = new System.Windows.Forms.Button();
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
|
this.buttonDllInfo = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBox
|
|
//
|
|
resources.ApplyResources(this.pictureBox, "pictureBox");
|
|
this.pictureBox.Name = "pictureBox";
|
|
this.pictureBox.TabStop = false;
|
|
//
|
|
// labelProgramName
|
|
//
|
|
resources.ApplyResources(this.labelProgramName, "labelProgramName");
|
|
this.labelProgramName.Name = "labelProgramName";
|
|
//
|
|
// labelVersion
|
|
//
|
|
resources.ApplyResources(this.labelVersion, "labelVersion");
|
|
this.labelVersion.Name = "labelVersion";
|
|
//
|
|
// labelCopyright
|
|
//
|
|
resources.ApplyResources(this.labelCopyright, "labelCopyright");
|
|
this.labelCopyright.Name = "labelCopyright";
|
|
//
|
|
// labelDisclaimer
|
|
//
|
|
resources.ApplyResources(this.labelDisclaimer, "labelDisclaimer");
|
|
this.labelDisclaimer.Name = "labelDisclaimer";
|
|
//
|
|
// textBox
|
|
//
|
|
resources.ApplyResources(this.textBox, "textBox");
|
|
this.textBox.Name = "textBox";
|
|
this.textBox.ReadOnly = true;
|
|
//
|
|
// buttonExport
|
|
//
|
|
resources.ApplyResources(this.buttonExport, "buttonExport");
|
|
this.buttonExport.Name = "buttonExport";
|
|
this.buttonExport.UseVisualStyleBackColor = true;
|
|
this.buttonExport.Click += new System.EventHandler(this.buttonExport_Click);
|
|
//
|
|
// buttonClose
|
|
//
|
|
resources.ApplyResources(this.buttonClose, "buttonClose");
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.UseVisualStyleBackColor = true;
|
|
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
|
//
|
|
// saveFileDialog
|
|
//
|
|
this.saveFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog_FileOk);
|
|
//
|
|
// buttonDllInfo
|
|
//
|
|
resources.ApplyResources(this.buttonDllInfo, "buttonDllInfo");
|
|
this.buttonDllInfo.Name = "buttonDllInfo";
|
|
this.buttonDllInfo.UseVisualStyleBackColor = true;
|
|
this.buttonDllInfo.Click += new System.EventHandler(this.buttonDllInfo_Click);
|
|
//
|
|
// AboutBox
|
|
//
|
|
resources.ApplyResources(this, "$this");
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.buttonDllInfo);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Controls.Add(this.buttonExport);
|
|
this.Controls.Add(this.textBox);
|
|
this.Controls.Add(this.labelDisclaimer);
|
|
this.Controls.Add(this.labelCopyright);
|
|
this.Controls.Add(this.labelVersion);
|
|
this.Controls.Add(this.labelProgramName);
|
|
this.Controls.Add(this.pictureBox);
|
|
this.Name = "AboutBox";
|
|
this.ShowIcon = false;
|
|
this.Load += new System.EventHandler(this.AboutBox_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox pictureBox;
|
|
private System.Windows.Forms.Label labelProgramName;
|
|
private System.Windows.Forms.Label labelVersion;
|
|
private System.Windows.Forms.Label labelCopyright;
|
|
private System.Windows.Forms.Label labelDisclaimer;
|
|
private System.Windows.Forms.TextBox textBox;
|
|
private System.Windows.Forms.Button buttonExport;
|
|
private System.Windows.Forms.Button buttonClose;
|
|
private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
|
private System.Windows.Forms.Button buttonDllInfo;
|
|
}
|
|
} |