mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
31 lines
740 B
C#
31 lines
740 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LibEveryFileExplorer.UI
|
|
{
|
|
public class ListViewNF : System.Windows.Forms.ListView
|
|
{
|
|
public ListViewNF()
|
|
{
|
|
//Activate double buffering
|
|
this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);
|
|
|
|
//Enable the OnNotifyMessage event so we get a chance to filter out
|
|
// Windows messages before they get to the form's WndProc
|
|
this.SetStyle(ControlStyles.EnableNotifyMessage, true);
|
|
}
|
|
|
|
protected override void OnNotifyMessage(Message m)
|
|
{
|
|
//Filter out the WM_ERASEBKGND message
|
|
if (m.Msg != 0x14)
|
|
{
|
|
base.OnNotifyMessage(m);
|
|
}
|
|
}
|
|
}
|
|
}
|