자동 매도 추가

This commit is contained in:
2017-01-26 15:43:12 +09:00
parent 47c8a9532c
commit da9a59622b
13 changed files with 1127 additions and 207 deletions

27
ListViewNF.cs Normal file
View File

@@ -0,0 +1,27 @@
using System.Windows.Forms;
namespace AutoSellerNS
{
public partial class ListViewNF : 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);
}
}
}
}