我在列表框中有按钮,对于每个按钮,我想提供不同的名称。这就是我在 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>
是一个字符串,它作为此列表框的 itemSource存储在 a 中的对象中。
为什么这行不通?
错误:
Object reference not set to an instance of an object.