我创建了自己的单选按钮来包含 index 属性,如下所示:
public class IndexedRadioButton : RadioButton
{
public int Index { get; set; }
}
我在列表框中使用此自定义单选按钮:
<ListBox Name="myListBox" Grid.Row="1" VerticalAlignment="Top">
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem" >
<Setter Property="HorizontalContentAlignment" Value="Stretch"></Setter>
</Style>
</ListBox.ItemContainerStyle>
<ListBox.ItemTemplate>
<DataTemplate>
<my:IndexedRadioButton Content="{Binding price}" GroupName="myGroup" IsChecked="{Binding isChecked}" Index="{Binding priceIndex}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
现在,我想用值填充这个列表框。
后面的代码:
public MainClass()
{
public MainClass()
{
InitializeComponent();
string[] priceList = new string["1","2","3"];
List<MyClass> myClassList = new List<MyClass>();
for (int i = 0; i < priceList.Count; i++)
{
MyClass listClass = new MyClass()
{
price = response.priceList[i],
priceIndex = i,
isChecked = i==0?true:false
};
myClassList.Add(listClass);
}
myListBox.ItemsSource = myClassList;
}
private class MyClass
{
public string price {get; set;}
public int priceIndex {get; set;}
public bool isChecked { get; set; }
}
}
当我运行应用程序时,我收到此错误 ->>{System.ArgumentException:值不在预期范围内。}(没有堆栈跟踪信息)
你认为是什么导致了错误?当我在 XAML 中为 Index 静态设置一些值时没有问题,Index="0"
但在 binding 中存在问题Index="{Binding priceIndex}"
。
谢谢,