Files
Troll-V2/Quasar.Server/Controls/RegistryTreeView.cs
T

14 lines
363 B
C#
Raw Normal View History

2026-08-27 11:22:16 -06:00
using System.Windows.Forms;
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);
}
}
}