AudioChannelForm.Designer.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. namespace ExampleFilters
  2. {
  3. partial class AudioChannelForm
  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.label1 = new System.Windows.Forms.Label();
  29. this.cmboChannel = new System.Windows.Forms.ComboBox();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.SuspendLayout();
  32. //
  33. // label1
  34. //
  35. this.label1.AutoSize = true;
  36. this.label1.Location = new System.Drawing.Point(12, 18);
  37. this.label1.Name = "label1";
  38. this.label1.Size = new System.Drawing.Size(126, 13);
  39. this.label1.TabIndex = 0;
  40. this.label1.Text = "Select an output channel";
  41. //
  42. // cmboChannel
  43. //
  44. this.cmboChannel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  45. this.cmboChannel.FormattingEnabled = true;
  46. this.cmboChannel.Location = new System.Drawing.Point(161, 18);
  47. this.cmboChannel.Name = "cmboChannel";
  48. this.cmboChannel.Size = new System.Drawing.Size(195, 21);
  49. this.cmboChannel.TabIndex = 1;
  50. this.cmboChannel.SelectedIndexChanged += new System.EventHandler(this.cmboChannel_SelectedIndexChanged);
  51. //
  52. // label2
  53. //
  54. this.label2.AutoSize = true;
  55. this.label2.Location = new System.Drawing.Point(12, 57);
  56. this.label2.Name = "label2";
  57. this.label2.Size = new System.Drawing.Size(218, 13);
  58. this.label2.TabIndex = 2;
  59. this.label2.Text = "NOTE: Channel will not swithed if filter active";
  60. //
  61. // AudioChannelForm
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.ClientSize = new System.Drawing.Size(432, 253);
  66. this.Controls.Add(this.label2);
  67. this.Controls.Add(this.cmboChannel);
  68. this.Controls.Add(this.label1);
  69. this.Name = "AudioChannelForm";
  70. this.Text = "Properties";
  71. this.Title = "Properties";
  72. this.Load += new System.EventHandler(this.AudioChannelForm_Load);
  73. this.ResumeLayout(false);
  74. this.PerformLayout();
  75. }
  76. #endregion
  77. private System.Windows.Forms.Label label1;
  78. private System.Windows.Forms.ComboBox cmboChannel;
  79. private System.Windows.Forms.Label label2;
  80. }
  81. }