Accord.Controls.ManipulatorControl.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.timer = new System.Windows.Forms.Timer(this.components);
            this.SuspendLayout();
            // 
            // timer
            // 
            this.timer.Interval = 10;
            this.timer.Tick += new System.EventHandler(this.timer_Tick);
            // 
            // ManipulatorControl
            // 
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.ManipulatorControl_Paint);
            this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ManipulatorControl_MouseMove);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ManipulatorControl_MouseDown);
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ManipulatorControl_MouseUp);
            this.ResumeLayout(false);

        }