97 lines
3.4 KiB
C#
97 lines
3.4 KiB
C#
namespace MusicMetaTagger.UI
|
|
{
|
|
partial class About
|
|
{
|
|
/// <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(About));
|
|
this.closeButton = new System.Windows.Forms.Button();
|
|
this.textBox = new System.Windows.Forms.TextBox();
|
|
this.textLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// closeButton
|
|
//
|
|
this.closeButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.closeButton.Location = new System.Drawing.Point(106, 235);
|
|
this.closeButton.Name = "closeButton";
|
|
this.closeButton.Size = new System.Drawing.Size(75, 23);
|
|
this.closeButton.TabIndex = 0;
|
|
this.closeButton.Text = "Close";
|
|
this.closeButton.UseVisualStyleBackColor = true;
|
|
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
|
|
//
|
|
// textBox
|
|
//
|
|
this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.textBox.Location = new System.Drawing.Point(13, 53);
|
|
this.textBox.Multiline = true;
|
|
this.textBox.Name = "textBox";
|
|
this.textBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.textBox.Size = new System.Drawing.Size(267, 176);
|
|
this.textBox.TabIndex = 1;
|
|
this.textBox.WordWrap = false;
|
|
this.textBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
|
|
//
|
|
// textLabel
|
|
//
|
|
this.textLabel.AutoSize = true;
|
|
this.textLabel.Location = new System.Drawing.Point(13, 13);
|
|
this.textLabel.Name = "textLabel";
|
|
this.textLabel.Size = new System.Drawing.Size(0, 13);
|
|
this.textLabel.TabIndex = 2;
|
|
//
|
|
// About
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.closeButton;
|
|
this.ClientSize = new System.Drawing.Size(292, 270);
|
|
this.Controls.Add(this.textLabel);
|
|
this.Controls.Add(this.textBox);
|
|
this.Controls.Add(this.closeButton);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "About";
|
|
this.Text = "About";
|
|
this.Load += new System.EventHandler(this.About_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button closeButton;
|
|
private System.Windows.Forms.TextBox textBox;
|
|
private System.Windows.Forms.Label textLabel;
|
|
}
|
|
} |