CodeTV.GraphBuilderBase.AddHandlers C# (CSharp) 메소드

AddHandlers() 보호된 메소드

protected AddHandlers ( ) : void
리턴 void
        protected virtual void AddHandlers()
        {
            // Add Windows Messages handlers
            this.hostingControl.PaintBackground += new VideoControl.PaintBackgroundEventHandler(OnPaintBackground);
            this.hostingControl.Paint += new PaintEventHandler(OnPaintHandler); // for WM_PAINT
            this.hostingControl.Resize += new EventHandler(OnResizeMoveHandler); // for WM_SIZE
            //this.hostingControl.Move += new EventHandler(OnResizeMoveHandler); // for WM_MOVE
            SystemEvents.DisplaySettingsChanged += new EventHandler(OnDisplayChangedHandler); // for WM_DISPLAYCHANGE
        }