Quasar/Quasar.Server/Controls/RegistryTreeView.cs

14 lines
363 B
C#
Raw Normal View History

2018-09-27 08:05:10 +00:00
using System.Windows.Forms;
2018-09-27 08:05:10 +00:00
namespace Quasar.Server.Controls
{
public class RegistryTreeView : TreeView
{
public RegistryTreeView()
{
//Enable double buffering and ignore WM_ERASEBKGND to reduce flicker
SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);
}
}
}