SVN-Revision: r895
This commit is contained in:
wyf
2025-07-29 02:25:22 +00:00
parent d9990ded69
commit b074cb392b
2 changed files with 5 additions and 3 deletions
@@ -1088,7 +1088,7 @@ namespace Lskj.Main.Control
Menu_ItemNew menu = new Menu_ItemNew(); Menu_ItemNew menu = new Menu_ItemNew();
if (fontFamily != null) if (fontFamily != null)
{ {
menu.GetLabelTitle().Font = new Font(fontFamily, 9.75f, FontStyle.Bold); menu.GetLabelTitle().Font = new Font(fontFamily, 10f, FontStyle.Bold);
menu.GetLabelTitleSub().Font = new Font(fontFamily, 8.5f, FontStyle.Regular); menu.GetLabelTitleSub().Font = new Font(fontFamily, 8.5f, FontStyle.Regular);
} }
menu.GetLabelTitle().ForeColor = Color.FromArgb(71, 73, 79); menu.GetLabelTitle().ForeColor = Color.FromArgb(71, 73, 79);
+4 -2
View File
@@ -111,10 +111,12 @@ namespace Lskj.Main.Control
this.BackgroundImage = _imgBorderHover; this.BackgroundImage = _imgBorderHover;
} }
Cursor = Cursors.Hand; Cursor = Cursors.Hand;
//Invalidate(); Invalidate();
Update();
} }
private void HoverLeave(object s, EventArgs e) private void HoverLeave(object s, EventArgs e)
{ {
if (ClientRectangle.Contains(PointToClient(System.Windows.Forms.Control.MousePosition))) return; if (ClientRectangle.Contains(PointToClient(System.Windows.Forms.Control.MousePosition))) return;
_isHover = false; _isHover = false;
//BackColor //BackColor = _normalBack;