public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter) { this.DragSource = dragSource; this.RectSplitter = rectSplitter; if(!this.BeginDrag()){ this.DragSource = null; return; } this.Outline = new SplitterOutline(); this.Outline.Show(rectSplitter); this.DragSource.BeginDrag(rectSplitter); }
public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter) { DragSource = dragSource; RectSplitter = rectSplitter; if (!BeginDrag()) { DragSource = null; return; } Outline = new SplitterOutline(); Outline.Show(rectSplitter); DragSource.BeginDrag(rectSplitter); }
public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter) { this.DragSource = dragSource; this.RectSplitter = rectSplitter; if (!this.BeginDrag()) { this.DragSource = null; return; } this.Outline = new SplitterOutline(); this.Outline.Show(rectSplitter); this.DragSource.BeginDrag(rectSplitter); }
public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter) { DragSource = dragSource; RectSplitter = rectSplitter; if (!BeginDrag()) { DragSource = null; return; } if (Type.GetType("Mono.Runtime") == null) { rectSplitter = Rectangle.Empty; } Outline = new SplitterOutline(); Outline.Show(rectSplitter); DragSource.BeginDrag(rectSplitter); }
public void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter) { DragSource = dragSource; RectSplitter = rectSplitter; if (!BeginDrag()) { DragSource = null; return; } if (DockPanel != null && !DockPanel.AllowChangeDock) { DragSource = null; return; } Outline = new SplitterOutline(); Outline.Show(rectSplitter); DragSource.BeginDrag(rectSplitter); }
internal void BeginDrag(ISplitterDragSource dragSource, Rectangle rectSplitter) { GetSplitterDragHandler().BeginDrag(dragSource, rectSplitter); }