aboutbox_dll_visualstudio/AboutBox/AboutBox.Designer.cs
Eugen Höglinger 6a8932b1d4 Änderung
- Umschalten der Ansicht zwischen internen und allen DLLs neu dazu
- Export Methode an die neue Ansicht angepasst
- 'FixLineLenght' komplett überarbeitet
   - Trennzeichen für neue Zeile ' ' und '\'
      - Leichtere lesbarkeit von langen Datei-Pfaden
   - Keine führenden Leerzeichen mehr am Zeilenanfang
   - Zeilenumbrüche im Text werden erkannt und bleiben erhalten
   - Leerzeilen werden berücksichtigt
2021-06-01 10:57:59 +02:00

162 lines
7.1 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();
this.radioButtonAll = new System.Windows.Forms.RadioButton();
this.radioButtonInternal = new System.Windows.Forms.RadioButton();
((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);
//
// radioButtonAll
//
resources.ApplyResources(this.radioButtonAll, "radioButtonAll");
this.radioButtonAll.Checked = true;
this.radioButtonAll.Name = "radioButtonAll";
this.radioButtonAll.TabStop = true;
this.radioButtonAll.UseVisualStyleBackColor = true;
this.radioButtonAll.CheckedChanged += new System.EventHandler(this.radioButtonAll_CheckedChanged);
//
// radioButtonInternal
//
resources.ApplyResources(this.radioButtonInternal, "radioButtonInternal");
this.radioButtonInternal.Name = "radioButtonInternal";
this.radioButtonInternal.UseVisualStyleBackColor = true;
this.radioButtonInternal.CheckedChanged += new System.EventHandler(this.radioButtonInternal_CheckedChanged);
//
// AboutBox
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.radioButtonInternal);
this.Controls.Add(this.radioButtonAll);
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.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutBox";
this.ShowIcon = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
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;
private System.Windows.Forms.RadioButton radioButtonAll;
private System.Windows.Forms.RadioButton radioButtonInternal;
}
}