如何动态添加按钮到ListBox - WPF - C#

时间:2013-09-11 07:48:08

标签: c# wpf button dynamic listbox

我想动态添加按钮,通过ListBox末尾的按钮动态添加ListBox。

我希望ListBox带有按钮,每个按钮都有不同的索引。之后我必须将事件放到那个按钮上。所以按钮将带索引。

在创建的ListBox下将是按钮,单击后可以添加带有按钮的新ListBox(与第一个示例相同)。

我该怎么做?

感谢您的帮助!

1 个答案:

答案 0 :(得分:-1)

这是解决方案:

private Boolean addNewListBox(ListBox targetElement, int indexOfElement)
    {
        ListBox elementListBox = new ListBox();

        elementListBox.Name = "elementListBox" + indexOfElement;
        elementListBox.VerticalAlignment = VerticalAlignment.Top;

        targetElement.Items.Remove(addFloor);
        targetElement.Items.Add(elementListBox);
        elementListBox.Items.Add(putElements("TEST", index));
        targetElement.Items.Add(addFloor);
        return true;
    }
public object putElements(string nameOfElement, int indexOfElement)
    {
        if (nameOfElement.Contains("TEST"))
        {
            Button floorButton = new Button();

            floorButton.Name = "floorButton" + indexOfElement;
            floorButton.Content = "floorButton" + indexOfElement;
            floorButton.Height = 60;
            floorButton.Width = 87;
            floorButton.Margin = new Thickness(0, 2, 0, 0);

            return floorButton;
        }
    }

当然有按钮上的事件。 ;)