Quasar/Server/Controls/ListViewEx.cs

12 lines
263 B
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
using System.Windows.Forms;
2015-01-13 18:29:11 +00:00
namespace xServer.Controls
2014-07-08 12:58:53 +00:00
{
2015-05-30 06:47:19 +00:00
public class ListViewEx : ListView
2014-07-08 12:58:53 +00:00
{
public ListViewEx()
{
2015-05-30 06:47:19 +00:00
SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);
2014-07-08 12:58:53 +00:00
}
}
}