/*
* Erstellt mit SharpDevelop.
* Benutzer: 001142709
* Datum: 15.05.2019
* Zeit: 08:53
*
* Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
*/
namespace FixLineLenght
{
partial class MainForm
{
///
/// Designer variable used to keep track of non-visual components.
///
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label labelResult;
private System.Windows.Forms.Button buttonFormat;
///
/// Disposes resources used by the form.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
///
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.labelResult = new System.Windows.Forms.Label();
this.buttonFormat = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// labelResult
//
this.labelResult.Location = new System.Drawing.Point(13, 13);
this.labelResult.Name = "labelResult";
this.labelResult.Size = new System.Drawing.Size(967, 318);
this.labelResult.TabIndex = 0;
this.labelResult.Text = resources.GetString("labelResult.Text");
//
// buttonFormat
//
this.buttonFormat.Location = new System.Drawing.Point(12, 334);
this.buttonFormat.Name = "buttonFormat";
this.buttonFormat.Size = new System.Drawing.Size(968, 23);
this.buttonFormat.TabIndex = 1;
this.buttonFormat.Text = "Format String";
this.buttonFormat.UseVisualStyleBackColor = true;
this.buttonFormat.Click += new System.EventHandler(this.ButtonFormatClick);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(992, 369);
this.Controls.Add(this.buttonFormat);
this.Controls.Add(this.labelResult);
this.Name = "MainForm";
this.Text = "FixLineLenght";
this.ResumeLayout(false);
}
}
}