-1

我有一个按钮和一个组合框。然后我点击这个按钮动态创建组合框。

这是代码:

this.Controls.Add(new ComboBox() { Location = new Point(w, z), Width = 121, Height = 21});

我该怎么做,通过单击按钮将创建具有相同项目的组合框?

使用一个组合框我知道如何,但是我如何处理动态创建的组合框,通过单击按钮将创建具有相同 7 个元素的动态组合框?

4

2 回答 2

1

这可能会有所帮助:https ://github.com/vitalets/x-editable

x-editable 是围绕在页面中创建新元素而构建的。

于 2013-03-03T13:19:09.303 回答
0

根据我对您的问题的理解(对不起,如果我错了),您可能想试试这个:

  1. 像这样声明2个全局变量

        private string[] elements = { "A", "B", "C", "D", "E", "F", "G" }; // Sample 7 item to put inside of your dropdownlist
        private int click = 0; // Initial value of click, will increase 1 after each click.
    
  2. 然后在button1_click事件中,输入此代码。

        int w = 100, z = 100; // Initial position
        this.click++; // Click value increase everytime you click
    
        ComboBox c;  
    
        this.Controls.Add(c = new ComboBox() // Create new combobox
        {
            Location = new Point(w, z + (this.click * 30)), // Each time you click, position on x-axis will stay and y-axis will increase by `click` multiply by 30 (you can change this '30' value)
            Width = 121,
            Height = 21,
    
        });
    
        for (int i = 0; i < elements.Length; i++) // Loop 7 times
        {
            c.Items.Add(this.elements[i]);
        }
    
  3. 我希望这能回答你的问题:)

于 2013-03-03T17:27:17.370 回答