87 lines
2.8 KiB
C#
87 lines
2.8 KiB
C#
|
|
using System.Diagnostics.CodeAnalysis;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Windows.Forms;
|
|||
|
|
using WeifenLuo.WinFormsUI.Docking;
|
|||
|
|
|
|||
|
|
namespace WeifenLuo.WinFormsUI.ThemeVS2013
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public class VS2013DockPane : DockPane
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="content"></param>
|
|||
|
|
/// <param name="visibleState"></param>
|
|||
|
|
/// <param name="show"></param>
|
|||
|
|
public VS2013DockPane(IDockContent content, DockState visibleState, bool show)
|
|||
|
|
: base(content, visibleState, show)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="content"></param>
|
|||
|
|
/// <param name="floatWindow"></param>
|
|||
|
|
/// <param name="show"></param>
|
|||
|
|
[SuppressMessage("Microsoft.Naming", "CA1720:AvoidTypeNamesInParameters", MessageId = "1#")]
|
|||
|
|
public VS2013DockPane(IDockContent content, FloatWindow floatWindow, bool show)
|
|||
|
|
: base(content, floatWindow, show)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="content"></param>
|
|||
|
|
/// <param name="previousPane"></param>
|
|||
|
|
/// <param name="alignment"></param>
|
|||
|
|
/// <param name="proportion"></param>
|
|||
|
|
/// <param name="show"></param>
|
|||
|
|
public VS2013DockPane(IDockContent content, DockPane previousPane, DockAlignment alignment, double proportion, bool show)
|
|||
|
|
: base(content, previousPane, alignment, proportion, show)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="content"></param>
|
|||
|
|
/// <param name="floatWindowBounds"></param>
|
|||
|
|
/// <param name="show"></param>
|
|||
|
|
[SuppressMessage("Microsoft.Naming", "CA1720:AvoidTypeNamesInParameters", MessageId = "1#")]
|
|||
|
|
public VS2013DockPane(IDockContent content, Rectangle floatWindowBounds, bool show)
|
|||
|
|
: base(content, floatWindowBounds, show)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="e"></param>
|
|||
|
|
protected override void OnPaint(PaintEventArgs e)
|
|||
|
|
{
|
|||
|
|
base.OnPaint(e);
|
|||
|
|
var color = DockPanel.Theme.ColorPalette.ToolWindowBorder;
|
|||
|
|
e.Graphics.FillRectangle(DockPanel.Theme.PaintingService.GetBrush(color), e.ClipRectangle);
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
protected internal override Rectangle ContentRectangle
|
|||
|
|
{
|
|||
|
|
get
|
|||
|
|
{
|
|||
|
|
var rect = base.ContentRectangle;
|
|||
|
|
if (DockState == DockState.Document || Contents.Count == 1)
|
|||
|
|
{
|
|||
|
|
rect.Height--;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
rect.Width -= 2;
|
|||
|
|
rect.X++;
|
|||
|
|
return rect;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|