我在列表框中有按钮,对于每个按钮,我想要 提供不同的名称。这就是我在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" />
buttonName
是一个字符串,存储在LinkedList<string>
中的对象中,作为此listBox的itemSource。
为什么这不起作用?
错误:
Object reference not set to an instance of an object.
答案 0 :(得分:0)
x:名称不能通过DataBinding下注 - 这是对象实例的名称,而不是动态的名称。