0

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

我想要带有按钮的 ListBox,每个按钮都有不同的索引。因为在那之后我必须把事件放到那个按钮上。所以按钮将带有索引。

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

我怎样才能做到这一点?

感谢帮助!

4

1 回答 1

-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;
        }
    }

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

于 2013-09-12T07:12:42.147 回答