File size: 2,197 Bytes
b1b3bae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
namespace FarsiLibrary.Win
{
internal class FATabStripMenuGlyph
{
#region Fields
private Rectangle glyphRect = Rectangle.Empty;
private bool isMouseOver = false;
private ToolStripProfessionalRenderer renderer;
#endregion
#region Props
public bool IsMouseOver
{
get { return isMouseOver; }
set { isMouseOver = value; }
}
public Rectangle Bounds
{
get { return glyphRect; }
set { glyphRect = value; }
}
#endregion
#region Ctor
internal FATabStripMenuGlyph(ToolStripProfessionalRenderer renderer)
{
this.renderer = renderer;
}
#endregion
#region Methods
public void DrawGlyph(Graphics g)
{
if (isMouseOver)
{
Color fill = renderer.ColorTable.ButtonSelectedHighlight; //Color.FromArgb(35, SystemColors.Highlight);
g.FillRectangle(new SolidBrush(fill), glyphRect);
Rectangle borderRect = glyphRect;
borderRect.Width--;
borderRect.Height--;
g.DrawRectangle(SystemPens.Highlight, borderRect);
}
SmoothingMode bak = g.SmoothingMode;
g.SmoothingMode = SmoothingMode.AntiAlias;
//using (Pen pen = new Pen(Color.Black))
//{
// pen.Width = 2;
// g.DrawLine(pen, new Point(glyphRect.Left + (glyphRect.Width / 3) - 2, glyphRect.Height / 2 - 1),
// new Point(glyphRect.Right - (glyphRect.Width / 3), glyphRect.Height / 2 - 1));
//}
var d = (int)((double)glyphRect.Width / 4);
g.FillPolygon(Brushes.Black, new Point[]{
new Point(glyphRect.Left + d, glyphRect.Y + d),
new Point(glyphRect.Right - d, glyphRect.Y + d),
new Point(glyphRect.Left + glyphRect.Width / 2,glyphRect.Bottom - d)});
g.SmoothingMode = bak;
}
#endregion
}
}
|