实例中的组合框值(与枚举绑定)

时间:2015-06-02 20:14:43

标签: c# combobox enums

美好的一天小伙子们!

我有一个问题。

如果您看到我的表单,我想我会保存大量文本,所以我们走了!

形式:

private void Form1_Load(object sender, EventArgs e)
{
    /*
    Held h1 = new Held("Tank", Lanes.Top);
    Held h2 = new Held("ADC", Lanes.Bot);
    Held h3 = new Held("Support", Lanes.Bot);
    listBox1.Items.Add(h1);
    listBox1.Items.Add(h2);
    listBox1.Items.Add(h3);
    */

    //Data koppelen
    cbRol.DataSource = Enum.GetValues(typeof(Lanes));
}

private void btnAanmaken_Click(object sender, EventArgs e)
{
    int getal;

    if (CheckEmptyFields())
    {
        MessageBox.Show("Vul alle velden in!");
    }
    else
    {
        if (CheckMovementSpeedIsInt(out getal))
        {
            string naamHero = tbNaamHero.Text;
            Lanes lane = ???
            int mSpeedHero = getal;
            Held nieuwHeld = new Held(naamHero, lane, getal);
        }
    }
}

private bool CheckMovementSpeedIsInt(out int getal)
{
    return Int32.TryParse(tbMoveSpeed.Text, out getal);
}

private bool CheckEmptyFields()
{
    return tbNaamHero.Text == null || tbMoveSpeed.Text == null || cbRol.SelectedItem == null;
}

判决:

class Held
{
    private string Naam;
    private Lanes Lane;
    int MSpeed;

    public Held(string aNaam, Lanes aLane, int aMSpeed)
    {
        this.Naam = aNaam;
        this.Lane = aLane;
        this.MSpeed = aMSpeed;
    }

    public override string ToString() 
    {
        return this.Naam + " " + this.Lane.ToString();
    }

}

}

泳道:

enum Lanes
{
    Top,
    Mid,
    Bot,
    Jungle
}

好的!所以你可以看到我把enum和ComboBox结合起来了。我想在实例中输入所选值(当用户按下按钮" Aanmaken / Create"时)。

我如何将对象(从ComboBox)转换为类型(Lanes)?

如果我还没有澄清,请给我一个抬头!

PS:" ???"在代码中我不知道该放什么,因为那是他的问题。

2 个答案:

答案 0 :(得分:2)

只需使用以下内容:

Lanes lane = (Lanes)cbRol.SelectedIndex;

由于enum属于int类型,因此您的Top实际上是0,依此类推......

答案 1 :(得分:1)

您可以解析Enum.Parse

Lanes lange = (Lanes) Enum.Parse(typeof(Lanes), cbRol.SelectedItem.ToString(), true);

这也适用于索引

Lanes lange = (Lanes) Enum.Parse(typeof(Lanes), cbRol.SelectedIndex.ToString(), true);