启用项粗体+蓝色

pull/567/head
YFdyh000 2020-03-17 01:04:36 +08:00
parent b1f5d5ad75
commit df427d80a1
1 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,7 @@ using v2rayN.Mode;
using v2rayN.Base;
using v2rayN.Tool;
using System.Diagnostics;
using System.Drawing;
namespace v2rayN.Forms
{
@ -239,6 +240,12 @@ namespace v2rayN.Forms
item.testResult
});
}
if (config.index.Equals(k))
{
//lvItem.Checked = true;
lvItem.ForeColor = Color.Blue;
lvItem.Font = new Font(lvItem.Font, FontStyle.Bold);
}
if (lvItem != null) lvServers.Items.Add(lvItem);
}