mirror of https://github.com/naudio/NAudio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
6.6 KiB
144 lines
6.6 KiB
namespace NAudio.Utils
|
|
{
|
|
partial class AboutForm
|
|
{
|
|
/// <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.linkLabelWebsite = new System.Windows.Forms.LinkLabel();
|
|
this.buttonOK = new System.Windows.Forms.Button();
|
|
this.labelProductName = new System.Windows.Forms.Label();
|
|
this.labelCopyright = new System.Windows.Forms.Label();
|
|
this.linkLabelFeedback = new System.Windows.Forms.LinkLabel();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.labelVersion = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// linkLabelWebsite
|
|
//
|
|
this.linkLabelWebsite.AutoSize = true;
|
|
this.linkLabelWebsite.Location = new System.Drawing.Point(13, 67);
|
|
this.linkLabelWebsite.Name = "linkLabelWebsite";
|
|
this.linkLabelWebsite.Size = new System.Drawing.Size(168, 13);
|
|
this.linkLabelWebsite.TabIndex = 0;
|
|
this.linkLabelWebsite.TabStop = true;
|
|
this.linkLabelWebsite.Text = "http://www.codeplex.com/naudio";
|
|
this.linkLabelWebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelWebsite_LinkClicked);
|
|
//
|
|
// buttonOK
|
|
//
|
|
this.buttonOK.Location = new System.Drawing.Point(111, 124);
|
|
this.buttonOK.Name = "buttonOK";
|
|
this.buttonOK.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonOK.TabIndex = 1;
|
|
this.buttonOK.Text = "OK";
|
|
this.buttonOK.UseVisualStyleBackColor = true;
|
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
|
//
|
|
// labelProductName
|
|
//
|
|
this.labelProductName.AutoSize = true;
|
|
this.labelProductName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.labelProductName.Location = new System.Drawing.Point(13, 13);
|
|
this.labelProductName.Name = "labelProductName";
|
|
this.labelProductName.Size = new System.Drawing.Size(196, 16);
|
|
this.labelProductName.TabIndex = 2;
|
|
this.labelProductName.Text = "{Application.ProductName}";
|
|
//
|
|
// labelCopyright
|
|
//
|
|
this.labelCopyright.AutoSize = true;
|
|
this.labelCopyright.Location = new System.Drawing.Point(13, 51);
|
|
this.labelCopyright.Name = "labelCopyright";
|
|
this.labelCopyright.Size = new System.Drawing.Size(149, 13);
|
|
this.labelCopyright.TabIndex = 2;
|
|
this.labelCopyright.Text = "Copyright © Mark Heath 2007";
|
|
//
|
|
// linkLabelFeedback
|
|
//
|
|
this.linkLabelFeedback.AutoSize = true;
|
|
this.linkLabelFeedback.Location = new System.Drawing.Point(13, 101);
|
|
this.linkLabelFeedback.Name = "linkLabelFeedback";
|
|
this.linkLabelFeedback.Size = new System.Drawing.Size(150, 13);
|
|
this.linkLabelFeedback.TabIndex = 3;
|
|
this.linkLabelFeedback.TabStop = true;
|
|
this.linkLabelFeedback.Text = "mark.heath@gmail.com";
|
|
this.linkLabelFeedback.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelFeedback_LinkClicked);
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(13, 85);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(243, 13);
|
|
this.label3.TabIndex = 2;
|
|
this.label3.Text = "Send feedback, feature requests and bug fixes to:";
|
|
//
|
|
// labelVersion
|
|
//
|
|
this.labelVersion.AutoSize = true;
|
|
this.labelVersion.Location = new System.Drawing.Point(13, 33);
|
|
this.labelVersion.Name = "labelVersion";
|
|
this.labelVersion.Size = new System.Drawing.Size(93, 13);
|
|
this.labelVersion.TabIndex = 2;
|
|
this.labelVersion.Text = "{Version: X.X.X.X}";
|
|
//
|
|
// AboutForm
|
|
//
|
|
this.AcceptButton = this.buttonOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(292, 159);
|
|
this.Controls.Add(this.linkLabelFeedback);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.labelVersion);
|
|
this.Controls.Add(this.labelCopyright);
|
|
this.Controls.Add(this.labelProductName);
|
|
this.Controls.Add(this.buttonOK);
|
|
this.Controls.Add(this.linkLabelWebsite);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "AboutForm";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "About {Application.ProductName}";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.LinkLabel linkLabelWebsite;
|
|
private System.Windows.Forms.Button buttonOK;
|
|
private System.Windows.Forms.Label labelProductName;
|
|
private System.Windows.Forms.Label labelCopyright;
|
|
private System.Windows.Forms.LinkLabel linkLabelFeedback;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label labelVersion;
|
|
}
|
|
}
|