FormMenu.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace InfoTrack
  2. {
  3. partial class FormMenu
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.buttonGroups = new System.Windows.Forms.Button();
  30. this.buttonAlbums = new System.Windows.Forms.Button();
  31. this.buttonTracks = new System.Windows.Forms.Button();
  32. this.panel1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // panel1
  36. //
  37. this.panel1.BackColor = System.Drawing.Color.Gray;
  38. this.panel1.Controls.Add(this.buttonTracks);
  39. this.panel1.Controls.Add(this.buttonAlbums);
  40. this.panel1.Controls.Add(this.buttonGroups);
  41. this.panel1.Location = new System.Drawing.Point(12, 12);
  42. this.panel1.Name = "panel1";
  43. this.panel1.Size = new System.Drawing.Size(770, 52);
  44. this.panel1.TabIndex = 0;
  45. //
  46. // buttonGroups
  47. //
  48. this.buttonGroups.Location = new System.Drawing.Point(251, 16);
  49. this.buttonGroups.Name = "buttonGroups";
  50. this.buttonGroups.Size = new System.Drawing.Size(75, 23);
  51. this.buttonGroups.TabIndex = 0;
  52. this.buttonGroups.Text = "groups";
  53. this.buttonGroups.UseVisualStyleBackColor = true;
  54. //
  55. // buttonAlbums
  56. //
  57. this.buttonAlbums.Location = new System.Drawing.Point(341, 16);
  58. this.buttonAlbums.Name = "buttonAlbums";
  59. this.buttonAlbums.Size = new System.Drawing.Size(75, 23);
  60. this.buttonAlbums.TabIndex = 1;
  61. this.buttonAlbums.Text = "albums";
  62. this.buttonAlbums.UseVisualStyleBackColor = true;
  63. //
  64. // buttonTracks
  65. //
  66. this.buttonTracks.Location = new System.Drawing.Point(431, 16);
  67. this.buttonTracks.Name = "buttonTracks";
  68. this.buttonTracks.Size = new System.Drawing.Size(75, 23);
  69. this.buttonTracks.TabIndex = 2;
  70. this.buttonTracks.Text = "tracks";
  71. this.buttonTracks.UseVisualStyleBackColor = true;
  72. //
  73. // FormMenu
  74. //
  75. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  76. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  77. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(30)))), ((int)(((byte)(33)))));
  78. this.ClientSize = new System.Drawing.Size(800, 512);
  79. this.Controls.Add(this.panel1);
  80. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  81. this.Name = "FormMenu";
  82. this.Text = "FormMenu";
  83. this.panel1.ResumeLayout(false);
  84. this.ResumeLayout(false);
  85. }
  86. #endregion
  87. private System.Windows.Forms.Panel panel1;
  88. private System.Windows.Forms.Button buttonTracks;
  89. private System.Windows.Forms.Button buttonAlbums;
  90. private System.Windows.Forms.Button buttonGroups;
  91. }
  92. }