subSetting speed up

pull/695/head
YFdyh000 2020-04-19 01:08:21 +08:00
parent 2c02285def
commit f4b885dce5
1 changed files with 2 additions and 5 deletions

View File

@ -8,8 +8,6 @@ namespace v2rayN.Forms
{
public partial class SubSettingForm : BaseForm
{
List<SubSettingControl> lstControls = new List<SubSettingControl>();
public SubSettingForm()
{
InitializeComponent();
@ -30,8 +28,8 @@ namespace v2rayN.Forms
/// </summary>
private void RefreshSubsView()
{
panCon.SuspendLayout();
panCon.Controls.Clear();
lstControls.Clear();
for (int k = config.subItem.Count - 1; k >= 0; k--)
{
@ -56,9 +54,8 @@ namespace v2rayN.Forms
panCon.Controls.Add(control);
panCon.Controls.SetChildIndex(control, 0);
lstControls.Add(control);
}
panCon.ResumeLayout();
}
private void Control_OnButtonClicked(object sender, EventArgs e)