13 lines
317 B
C#
13 lines
317 B
C#
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Server.Helper;
|
|
|
|
public static class ListviewDoubleBuffer
|
|
{
|
|
public static void Enable(ListView listView)
|
|
{
|
|
typeof(Control).GetProperty("DoubleBuffered", BindingFlags.Instance | BindingFlags.NonPublic).SetValue(listView, true, null);
|
|
}
|
|
}
|