protected override void WndProc(ref Message m) {
try {
if (m.Msg == WM_ERASEBKGND) {
m.Result = IntPtr.Zero;
return;
}
if (m.Msg == 0x0115) {
if (VerticalScroll != null) {
VerticalScroll.Invoke(this, EventArgs.Empty);
}
}
base.WndProc(ref m);
} catch (AccessViolationException) { }
}
protected override CreateParams CreateParams {