Keyboard firmwares for Atmel AVR and Cortex-M
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.

LEDMixer.Designer.cs 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. namespace LEDMixer
  2. {
  3. partial class LEDMixer
  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.components = new System.ComponentModel.Container();
  29. this.tbRed = new System.Windows.Forms.TrackBar();
  30. this.tbGreen = new System.Windows.Forms.TrackBar();
  31. this.tbBlue = new System.Windows.Forms.TrackBar();
  32. this.serSerialPort = new System.IO.Ports.SerialPort(this.components);
  33. this.cbPort = new System.Windows.Forms.ComboBox();
  34. this.lblRed = new System.Windows.Forms.Label();
  35. this.lblBlue = new System.Windows.Forms.Label();
  36. this.lblGreen = new System.Windows.Forms.Label();
  37. ((System.ComponentModel.ISupportInitialize)(this.tbRed)).BeginInit();
  38. ((System.ComponentModel.ISupportInitialize)(this.tbGreen)).BeginInit();
  39. ((System.ComponentModel.ISupportInitialize)(this.tbBlue)).BeginInit();
  40. this.SuspendLayout();
  41. //
  42. // tbRed
  43. //
  44. this.tbRed.Location = new System.Drawing.Point(54, 64);
  45. this.tbRed.Maximum = 512;
  46. this.tbRed.Name = "tbRed";
  47. this.tbRed.Size = new System.Drawing.Size(230, 45);
  48. this.tbRed.TabIndex = 0;
  49. this.tbRed.Scroll += new System.EventHandler(this.tbRed_Scroll);
  50. //
  51. // tbGreen
  52. //
  53. this.tbGreen.Location = new System.Drawing.Point(54, 115);
  54. this.tbGreen.Maximum = 512;
  55. this.tbGreen.Name = "tbGreen";
  56. this.tbGreen.Size = new System.Drawing.Size(230, 45);
  57. this.tbGreen.TabIndex = 1;
  58. this.tbGreen.Scroll += new System.EventHandler(this.tbGreen_Scroll);
  59. //
  60. // tbBlue
  61. //
  62. this.tbBlue.Location = new System.Drawing.Point(54, 163);
  63. this.tbBlue.Maximum = 512;
  64. this.tbBlue.Name = "tbBlue";
  65. this.tbBlue.Size = new System.Drawing.Size(230, 45);
  66. this.tbBlue.TabIndex = 2;
  67. this.tbBlue.Scroll += new System.EventHandler(this.tbBlue_Scroll);
  68. //
  69. // cbPort
  70. //
  71. this.cbPort.FormattingEnabled = true;
  72. this.cbPort.Location = new System.Drawing.Point(97, 12);
  73. this.cbPort.Name = "cbPort";
  74. this.cbPort.Size = new System.Drawing.Size(99, 21);
  75. this.cbPort.TabIndex = 3;
  76. this.cbPort.SelectedIndexChanged += new System.EventHandler(this.cbPort_SelectedIndexChanged);
  77. //
  78. // lblRed
  79. //
  80. this.lblRed.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  81. this.lblRed.Location = new System.Drawing.Point(3, 64);
  82. this.lblRed.Name = "lblRed";
  83. this.lblRed.Size = new System.Drawing.Size(48, 29);
  84. this.lblRed.TabIndex = 4;
  85. this.lblRed.Text = "Red";
  86. this.lblRed.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  87. //
  88. // lblBlue
  89. //
  90. this.lblBlue.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  91. this.lblBlue.Location = new System.Drawing.Point(3, 115);
  92. this.lblBlue.Name = "lblGreen";
  93. this.lblBlue.Size = new System.Drawing.Size(50, 27);
  94. this.lblBlue.TabIndex = 5;
  95. this.lblBlue.Text = "Green";
  96. this.lblBlue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  97. //
  98. // lblGreen
  99. //
  100. this.lblGreen.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  101. this.lblGreen.Location = new System.Drawing.Point(3, 163);
  102. this.lblGreen.Name = "lblBlue";
  103. this.lblGreen.Size = new System.Drawing.Size(50, 25);
  104. this.lblGreen.TabIndex = 6;
  105. this.lblGreen.Text = "Blue";
  106. this.lblGreen.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  107. //
  108. // LEDMixer
  109. //
  110. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  111. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  112. this.ClientSize = new System.Drawing.Size(284, 207);
  113. this.Controls.Add(this.lblGreen);
  114. this.Controls.Add(this.lblBlue);
  115. this.Controls.Add(this.lblRed);
  116. this.Controls.Add(this.cbPort);
  117. this.Controls.Add(this.tbBlue);
  118. this.Controls.Add(this.tbGreen);
  119. this.Controls.Add(this.tbRed);
  120. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  121. this.MaximizeBox = false;
  122. this.MinimizeBox = false;
  123. this.Name = "LEDMixer";
  124. this.Text = "LED Mixer";
  125. this.Load += new System.EventHandler(this.LEDMixer_Load);
  126. ((System.ComponentModel.ISupportInitialize)(this.tbRed)).EndInit();
  127. ((System.ComponentModel.ISupportInitialize)(this.tbGreen)).EndInit();
  128. ((System.ComponentModel.ISupportInitialize)(this.tbBlue)).EndInit();
  129. this.ResumeLayout(false);
  130. this.PerformLayout();
  131. }
  132. #endregion
  133. private System.Windows.Forms.TrackBar tbRed;
  134. private System.Windows.Forms.TrackBar tbGreen;
  135. private System.Windows.Forms.TrackBar tbBlue;
  136. private System.IO.Ports.SerialPort serSerialPort;
  137. private System.Windows.Forms.ComboBox cbPort;
  138. private System.Windows.Forms.Label lblRed;
  139. private System.Windows.Forms.Label lblBlue;
  140. private System.Windows.Forms.Label lblGreen;
  141. }
  142. }