ShiftOS-Rewind/ShiftOS.Engine/UI/ShiftStripRenderer.cs
AShifter c81573594f Add SaveSystem, FullScreen Terminal and stuff
Git had a horrible seizure and removed our repo but Alex-TIMEHACK helped
us get it back.
2017-11-25 08:59:48 -07:00

21 lines
565 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ShiftOS.Engine.UI
{
public class ShiftStripRenderer : ToolStripProfessionalRenderer
{
protected override void OnRenderLabelBackground(ToolStripItemRenderEventArgs e)
{
using (var b = new SolidBrush(e.Item.BackColor))
{
e.Graphics.FillRectangle(b, new Rectangle(Point.Empty, e.Item.Size));
}
}
}
}