2026-08-27 11:21:58 -06:00
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Server.Helper;
|
|
|
|
|
|
|
|
|
|
public class RegistryTreeView : TreeView
|
|
|
|
|
{
|
|
|
|
|
public RegistryTreeView()
|
|
|
|
|
{
|
|
|
|
|
SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, value: true);
|
|
|
|
|
}
|
|
|
|
|
}
|