Quasar/Server/Controls/ListViewEx.cs

13 lines
279 B
C#
Raw Normal View History

2014-07-08 05:58:53 -07:00
using System.Windows.Forms;
2015-01-13 10:29:11 -08:00
namespace xServer.Controls
2014-07-08 05:58:53 -07:00
{
public partial class ListViewEx : ListView
{
public ListViewEx()
{
base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
this.DoubleBuffered = true;
}
}
}