BizHawk/BizHawk.Client.EmuHawk/CustomControls/TransparentTrackbar.cs

21 lines
387 B
C#

using System;
using System.Windows.Forms;
namespace BizHawk.Client.EmuHawk
{
public class TransparentTrackBar : TrackBar
{
protected override void OnCreateControl()
{
if (!DesignMode)
{
SetStyle(ControlStyles.SupportsTransparentBackColor, true);
if (Parent != null)
BackColor = Parent.BackColor;
}
base.OnCreateControl();
}
}
}