it feels good to me! -Thoys git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@26 3f4676ac-adda-40fd-8265-58d1435b1672
28 lines
717 B
C#
28 lines
717 B
C#
using System;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LSLEditor.Docking
|
|
{
|
|
public partial class DockWindow
|
|
{
|
|
private class SplitterControl : SplitterBase
|
|
{
|
|
protected override int SplitterSize
|
|
{
|
|
get { return Measures.SplitterSize; }
|
|
}
|
|
|
|
protected override void StartDrag()
|
|
{
|
|
DockWindow window = Parent as DockWindow;
|
|
if (window == null)
|
|
return;
|
|
|
|
window.DockPanel.BeginDrag(window, window.RectangleToScreen(Bounds));
|
|
}
|
|
}
|
|
}
|
|
}
|