0

我在列表框中有按钮,对于每个按钮,我想提供不同的名称。这就是我在 XAML 中设置绑定的方式:

<Button Content="{Binding count}"
        x:Name="{Binding buttonName}"
        Width="55"
        Height="55"
        BorderThickness="3"
        FontSize="18.667"
        Padding="-1,-2,0,0"
        Margin="-400,0,0,0"
        FontWeight="Bold"
        Click="servingButtonClicked" />

buttonNameLinkedList<string>是一个字符串,它作为此列表框的 itemSource存储在 a 中的对象中。

为什么这行不通?

错误:

Object reference not set to an instance of an object.
4

1 回答 1

0

x:Name 不得通过 DataBinding 打赌 - 这是对象实例的名称,而不是动态名称。

于 2013-03-16T18:38:47.030 回答