namespace AudioVisualizer { partial class MainWindow { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { components = new System.ComponentModel.Container(); dataTimer = new System.Windows.Forms.Timer(components); drawingPanel = new Panel(); drawingTimer = new System.Windows.Forms.Timer(components); SuspendLayout(); // // dataTimer // dataTimer.Interval = 30; dataTimer.Tick += DataTimer_Tick; // // drawingPanel // drawingPanel.Dock = DockStyle.Fill; drawingPanel.Location = new Point(0, 0); drawingPanel.Name = "drawingPanel"; drawingPanel.Size = new Size(880, 432); drawingPanel.TabIndex = 0; drawingPanel.MouseDoubleClick += DrawingPanel_MouseDoubleClick; // // drawingTimer // drawingTimer.Interval = 30; drawingTimer.Tick += DrawingTimer_Tick; // // MainWindow // AutoScaleDimensions = new SizeF(11F, 24F); AutoScaleMode = AutoScaleMode.Font; BackColor = Color.Black; ClientSize = new Size(880, 432); Controls.Add(drawingPanel); FormBorderStyle = FormBorderStyle.None; Name = "MainWindow"; Text = "Music Visualizer"; FormClosed += MainWindow_FormClosed; Load += MainWindow_Load; ResumeLayout(false); } #endregion private System.Windows.Forms.Timer dataTimer; private Panel drawingPanel; private System.Windows.Forms.Timer drawingTimer; } }