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.

93 lines
4.0 KiB

  1. namespace AudioFileInspector
  2. {
  3. partial class OptionsForm
  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.buttonAssociate = new System.Windows.Forms.Button();
  29. this.buttonDisassociate = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // buttonAssociate
  34. //
  35. this.buttonAssociate.Location = new System.Drawing.Point(73, 64);
  36. this.buttonAssociate.Name = "buttonAssociate";
  37. this.buttonAssociate.Size = new System.Drawing.Size(164, 23);
  38. this.buttonAssociate.TabIndex = 0;
  39. this.buttonAssociate.Text = "Recreate File Associations";
  40. this.buttonAssociate.UseVisualStyleBackColor = true;
  41. this.buttonAssociate.Click += new System.EventHandler(this.buttonAssociate_Click);
  42. //
  43. // buttonDisassociate
  44. //
  45. this.buttonDisassociate.Location = new System.Drawing.Point(73, 93);
  46. this.buttonDisassociate.Name = "buttonDisassociate";
  47. this.buttonDisassociate.Size = new System.Drawing.Size(164, 23);
  48. this.buttonDisassociate.TabIndex = 1;
  49. this.buttonDisassociate.Text = "Remove File Associations";
  50. this.buttonDisassociate.UseVisualStyleBackColor = true;
  51. this.buttonDisassociate.Click += new System.EventHandler(this.buttonDisassociate_Click);
  52. //
  53. // label1
  54. //
  55. this.label1.AutoSize = true;
  56. this.label1.Location = new System.Drawing.Point(12, 9);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(290, 52);
  59. this.label1.TabIndex = 2;
  60. this.label1.Text = "Audio File Inspector can be set up to appear as a right-click \r\ncontext menu opti" +
  61. "on in Windows explorer. You can recreate\r\nor remove the file associations at any" +
  62. " time using the buttons\r\nbelow.";
  63. //
  64. // OptionsForm
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  68. this.ClientSize = new System.Drawing.Size(309, 128);
  69. this.Controls.Add(this.label1);
  70. this.Controls.Add(this.buttonDisassociate);
  71. this.Controls.Add(this.buttonAssociate);
  72. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  73. this.MaximizeBox = false;
  74. this.MinimizeBox = false;
  75. this.Name = "OptionsForm";
  76. this.ShowIcon = false;
  77. this.ShowInTaskbar = false;
  78. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  79. this.Text = "Options";
  80. this.ResumeLayout(false);
  81. this.PerformLayout();
  82. }
  83. #endregion
  84. private System.Windows.Forms.Button buttonAssociate;
  85. private System.Windows.Forms.Button buttonDisassociate;
  86. private System.Windows.Forms.Label label1;
  87. }
  88. }