ARCed.UI.DockPanel.SplitterDragHandler.BeginDrag C# (CSharp) 메소드

BeginDrag() 공개 메소드

public BeginDrag ( ISplitterDragSource dragSource, Rectangle rectSplitter ) : void
dragSource ISplitterDragSource
rectSplitter System.Drawing.Rectangle
리턴 void
            public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter)
            {
                this.DragSource = dragSource;
                this.RectSplitter = rectSplitter;

                if (!BeginDrag())
                {
                    this.DragSource = null;
                    return;
                }

                this.Outline = new SplitterOutline();
                this.Outline.Show(rectSplitter);
                this.DragSource.BeginDrag(rectSplitter);
            }