mirror of
https://github.com/SourMesen/VisualNes.git
synced 2025-04-02 10:31:49 -04:00
12 lines
177 B
C#
12 lines
177 B
C#
using System.Windows.Forms;
|
|
|
|
namespace GUI
|
|
{
|
|
public class DoubleBufferedListView : ListView
|
|
{
|
|
public DoubleBufferedListView()
|
|
{
|
|
this.DoubleBuffered = true;
|
|
}
|
|
}
|
|
}
|