1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace InfoTrack
- {
- partial class FormMenu
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.panel1 = new System.Windows.Forms.Panel();
- this.buttonGroups = new System.Windows.Forms.Button();
- this.buttonAlbums = new System.Windows.Forms.Button();
- this.buttonTracks = new System.Windows.Forms.Button();
- this.panel1.SuspendLayout();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.Gray;
- this.panel1.Controls.Add(this.buttonTracks);
- this.panel1.Controls.Add(this.buttonAlbums);
- this.panel1.Controls.Add(this.buttonGroups);
- this.panel1.Location = new System.Drawing.Point(12, 12);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(770, 52);
- this.panel1.TabIndex = 0;
- //
- // buttonGroups
- //
- this.buttonGroups.Location = new System.Drawing.Point(251, 16);
- this.buttonGroups.Name = "buttonGroups";
- this.buttonGroups.Size = new System.Drawing.Size(75, 23);
- this.buttonGroups.TabIndex = 0;
- this.buttonGroups.Text = "groups";
- this.buttonGroups.UseVisualStyleBackColor = true;
- //
- // buttonAlbums
- //
- this.buttonAlbums.Location = new System.Drawing.Point(341, 16);
- this.buttonAlbums.Name = "buttonAlbums";
- this.buttonAlbums.Size = new System.Drawing.Size(75, 23);
- this.buttonAlbums.TabIndex = 1;
- this.buttonAlbums.Text = "albums";
- this.buttonAlbums.UseVisualStyleBackColor = true;
- //
- // buttonTracks
- //
- this.buttonTracks.Location = new System.Drawing.Point(431, 16);
- this.buttonTracks.Name = "buttonTracks";
- this.buttonTracks.Size = new System.Drawing.Size(75, 23);
- this.buttonTracks.TabIndex = 2;
- this.buttonTracks.Text = "tracks";
- this.buttonTracks.UseVisualStyleBackColor = true;
- //
- // FormMenu
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(30)))), ((int)(((byte)(33)))));
- this.ClientSize = new System.Drawing.Size(800, 512);
- this.Controls.Add(this.panel1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "FormMenu";
- this.Text = "FormMenu";
- this.panel1.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Button buttonTracks;
- private System.Windows.Forms.Button buttonAlbums;
- private System.Windows.Forms.Button buttonGroups;
- }
- }
|