启用项粗体+蓝色

This commit is contained in:
YFdyh000 2020-03-17 01:04:36 +08:00
parent b1f5d5ad75
commit df427d80a1

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);
}