BExplorer.Shell.TreeViewBase.WndProc C# (CSharp) Method

WndProc() private method

private WndProc ( Message &m ) : void
m System.Windows.Forms.Message
return void
		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 {