Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/DockWindow.SplitterControl.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 485 bytes
Line 
1
2namespace WeifenLuo.WinFormsUI.Docking {
3  public partial class DockWindow {
4    private class SplitterControl : SplitterBase {
5      protected override int SplitterSize {
6        get { return Measures.SplitterSize; }
7      }
8
9      protected override void StartDrag() {
10        DockWindow window = Parent as DockWindow;
11        if (window == null)
12          return;
13
14        window.DockPanel.BeginDrag(window, window.RectangleToScreen(Bounds));
15      }
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.