* UINavMenu:恢复至上一版。

This commit is contained in:
Sunny 2021-05-25 17:31:24 +08:00
parent 23fe4e46d4
commit 48ce314aba
4 changed files with 2 additions and 11 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -21,7 +21,6 @@
* 2020-03-12: V3.0.2 * 2020-03-12: V3.0.2
******************************************************************************/ ******************************************************************************/
using Sunny.UI.Win32;
using System; using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.ComponentModel; using System.ComponentModel;
@ -786,17 +785,9 @@ namespace Sunny.UI
protected override void WndProc(ref Message m) protected override void WndProc(ref Message m)
{ {
base.WndProc(ref m);
if (IsDisposed || Disposing) return; if (IsDisposed || Disposing) return;
Win32.User.ShowScrollBar(Handle, 3, false);
switch (m.Msg)
{
case User.WM_ERASEBKGND:
Win32.User.ShowScrollBar(Handle, 3, false);
break;
default:
base.WndProc(ref m);
break;
}
} }
public TreeNode CreateNode(string text, int pageIndex) public TreeNode CreateNode(string text, int pageIndex)