* UINavMenu: 修复选中节点右侧图标前景色

This commit is contained in:
Sunny 2022-08-19 10:10:11 +08:00
parent 8f0f262d33
commit 14bfb4cde9

View File

@ -28,6 +28,7 @@
* 2022-03-24: V3.1.1 TipsText显示位置
* 2022-04-14: V3.1.3
* 2022-06-23: V3.2.0 SymbolOffset
* 2022-08-19: V3.2.3
******************************************************************************/
using System;
@ -668,7 +669,7 @@ namespace Sunny.UI
for (int i = 0; i < TreeNodeSymbols[e.Node].Count; i++)
{
e.Graphics.DrawFontImage(TreeNodeSymbols[e.Node][i], 24, ForeColor, new Rectangle(firstLeft + i * 32, e.Bounds.Top, 32, e.Bounds.Height));
e.Graphics.DrawFontImage(TreeNodeSymbols[e.Node][i], 24, SelectedForeColor, new Rectangle(firstLeft + i * 32, e.Bounds.Top, 32, e.Bounds.Height));
}
}
}