How do i show enum values in a combo-box?

后端 未结 3 2056
说谎
说谎 2021-01-01 21:48

How do i show enum values in a combo-box? The code below result in the combobox having all displayed names being \"caseHandler.cState\". I wanted it to have the actual names

3条回答
  •  情话喂你
    2021-01-01 22:18

    Here My Code , you can have text and value together and fill Combobox

     public enum LayerType : int
    {
    
        [Description("محوطه")]
        Area = 1,
    
    
        [Description("ساختمان")]
        Building = 2,
    
    
        [Description("بارانداز")]
        Wharf = 3,}
    
    drpLayer.DataSource = Enum.GetValues(typeof(LayerType))
                 .Cast()
                 .Select(value => new
            {
            (Attribute.GetCustomAttribute(value.GetType().GetField(value.ToString()), typeof(DescriptionAttribute)) as DescriptionAttribute).Description,
            value
             })
            .OrderBy(item => item.value)
            .ToList();
                drpLayer.DisplayMember = "Description";
                drpLayer.ValueMember = "value";
    

提交回复
热议问题