diff --git a/RevokeMsgPatcher/FormMain.Designer.cs b/RevokeMsgPatcher/FormMain.Designer.cs index 2ef9b92..949b4f8 100644 --- a/RevokeMsgPatcher/FormMain.Designer.cs +++ b/RevokeMsgPatcher/FormMain.Designer.cs @@ -135,7 +135,7 @@ // this.lblUpdatePachJson.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.lblUpdatePachJson.Cursor = System.Windows.Forms.Cursors.Hand; - this.lblUpdatePachJson.ForeColor = System.Drawing.SystemColors.Highlight; + this.lblUpdatePachJson.ForeColor = System.Drawing.Color.OrangeRed; this.lblUpdatePachJson.Location = new System.Drawing.Point(168, 118); this.lblUpdatePachJson.Name = "lblUpdatePachJson"; this.lblUpdatePachJson.Size = new System.Drawing.Size(308, 12); diff --git a/RevokeMsgPatcher/FormMain.cs b/RevokeMsgPatcher/FormMain.cs index 4d9d4d2..6325746 100644 --- a/RevokeMsgPatcher/FormMain.cs +++ b/RevokeMsgPatcher/FormMain.cs @@ -2,6 +2,7 @@ using RevokeMsgPatcher.Modifier; using RevokeMsgPatcher.Utils; using System; +using System.Drawing; using System.IO; using System.Web.Script.Serialization; using System.Windows.Forms; @@ -239,11 +240,13 @@ namespace RevokeMsgPatcher { needUpdate = true; lblUpdatePachJson.Text = $"[ 存在最新版本 {bag.LatestVersion} ]"; + lblUpdatePachJson.ForeColor = Color.Red; } else { needUpdate = false; lblUpdatePachJson.Text = "[ 获取成功,点击查看更多信息 ]"; + lblUpdatePachJson.ForeColor = Color.RoyalBlue; } InitControls(); }