Audio and MIDI library for .NET
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.

143 lines
6.6 KiB

  1. namespace NAudio.Utils
  2. {
  3. partial class AboutForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.linkLabelWebsite = new System.Windows.Forms.LinkLabel();
  29. this.buttonOK = new System.Windows.Forms.Button();
  30. this.labelProductName = new System.Windows.Forms.Label();
  31. this.labelCopyright = new System.Windows.Forms.Label();
  32. this.linkLabelFeedback = new System.Windows.Forms.LinkLabel();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.labelVersion = new System.Windows.Forms.Label();
  35. this.SuspendLayout();
  36. //
  37. // linkLabelWebsite
  38. //
  39. this.linkLabelWebsite.AutoSize = true;
  40. this.linkLabelWebsite.Location = new System.Drawing.Point(13, 67);
  41. this.linkLabelWebsite.Name = "linkLabelWebsite";
  42. this.linkLabelWebsite.Size = new System.Drawing.Size(168, 13);
  43. this.linkLabelWebsite.TabIndex = 0;
  44. this.linkLabelWebsite.TabStop = true;
  45. this.linkLabelWebsite.Text = "http://www.codeplex.com/naudio";
  46. this.linkLabelWebsite.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelWebsite_LinkClicked);
  47. //
  48. // buttonOK
  49. //
  50. this.buttonOK.Location = new System.Drawing.Point(111, 124);
  51. this.buttonOK.Name = "buttonOK";
  52. this.buttonOK.Size = new System.Drawing.Size(75, 23);
  53. this.buttonOK.TabIndex = 1;
  54. this.buttonOK.Text = "OK";
  55. this.buttonOK.UseVisualStyleBackColor = true;
  56. this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
  57. //
  58. // labelProductName
  59. //
  60. this.labelProductName.AutoSize = true;
  61. this.labelProductName.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  62. this.labelProductName.Location = new System.Drawing.Point(13, 13);
  63. this.labelProductName.Name = "labelProductName";
  64. this.labelProductName.Size = new System.Drawing.Size(196, 16);
  65. this.labelProductName.TabIndex = 2;
  66. this.labelProductName.Text = "{Application.ProductName}";
  67. //
  68. // labelCopyright
  69. //
  70. this.labelCopyright.AutoSize = true;
  71. this.labelCopyright.Location = new System.Drawing.Point(13, 51);
  72. this.labelCopyright.Name = "labelCopyright";
  73. this.labelCopyright.Size = new System.Drawing.Size(149, 13);
  74. this.labelCopyright.TabIndex = 2;
  75. this.labelCopyright.Text = "Copyright � Mark Heath 2007";
  76. //
  77. // linkLabelFeedback
  78. //
  79. this.linkLabelFeedback.AutoSize = true;
  80. this.linkLabelFeedback.Location = new System.Drawing.Point(13, 101);
  81. this.linkLabelFeedback.Name = "linkLabelFeedback";
  82. this.linkLabelFeedback.Size = new System.Drawing.Size(150, 13);
  83. this.linkLabelFeedback.TabIndex = 3;
  84. this.linkLabelFeedback.TabStop = true;
  85. this.linkLabelFeedback.Text = "mark.heath@gmail.com";
  86. this.linkLabelFeedback.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelFeedback_LinkClicked);
  87. //
  88. // label3
  89. //
  90. this.label3.AutoSize = true;
  91. this.label3.Location = new System.Drawing.Point(13, 85);
  92. this.label3.Name = "label3";
  93. this.label3.Size = new System.Drawing.Size(243, 13);
  94. this.label3.TabIndex = 2;
  95. this.label3.Text = "Send feedback, feature requests and bug fixes to:";
  96. //
  97. // labelVersion
  98. //
  99. this.labelVersion.AutoSize = true;
  100. this.labelVersion.Location = new System.Drawing.Point(13, 33);
  101. this.labelVersion.Name = "labelVersion";
  102. this.labelVersion.Size = new System.Drawing.Size(93, 13);
  103. this.labelVersion.TabIndex = 2;
  104. this.labelVersion.Text = "{Version: X.X.X.X}";
  105. //
  106. // AboutForm
  107. //
  108. this.AcceptButton = this.buttonOK;
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111. this.ClientSize = new System.Drawing.Size(292, 159);
  112. this.Controls.Add(this.linkLabelFeedback);
  113. this.Controls.Add(this.label3);
  114. this.Controls.Add(this.labelVersion);
  115. this.Controls.Add(this.labelCopyright);
  116. this.Controls.Add(this.labelProductName);
  117. this.Controls.Add(this.buttonOK);
  118. this.Controls.Add(this.linkLabelWebsite);
  119. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  120. this.MaximizeBox = false;
  121. this.MinimizeBox = false;
  122. this.Name = "AboutForm";
  123. this.ShowInTaskbar = false;
  124. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  125. this.Text = "About {Application.ProductName}";
  126. this.ResumeLayout(false);
  127. this.PerformLayout();
  128. }
  129. #endregion
  130. private System.Windows.Forms.LinkLabel linkLabelWebsite;
  131. private System.Windows.Forms.Button buttonOK;
  132. private System.Windows.Forms.Label labelProductName;
  133. private System.Windows.Forms.Label labelCopyright;
  134. private System.Windows.Forms.LinkLabel linkLabelFeedback;
  135. private System.Windows.Forms.Label label3;
  136. private System.Windows.Forms.Label labelVersion;
  137. }
  138. }