private void UpdateLabelCounter(TableLayoutPanel panel)
        {
            bool table = panel.Equals(table_includes);

            Label counter = table ? lbl_wireIncludesExpand : lbl_wireIgnoresExpand;

            counter.Text = (table ? "Includes (" : "Ignores (") + (panel.RowCount - 1) + ")";
        }