14 lines
363 B
C#
14 lines
363 B
C#
using System.Windows.Forms;
|
|||
|
|
|
||
|
|
namespace Pulsar.Server.Controls
|
||
|
|
{
|
||
|
|
public class RegistryTreeView : TreeView
|
||
|
|
{
|
||
|
|
public RegistryTreeView()
|
||
|
|
{
|
||
|
|
//Enable double buffering and ignore WM_ERASEBKGND to reduce flicker
|
||
|
|
SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|