DropDownList1.Items.Clear();
        foreach (string s in Enum.GetNames(typeof(Chart2DTypeEnum)))
        {
            DropDownList1.Items.Add(s);
        }

相关文章: