关于设置多个ItemsSource时报错ArgumentOutOfRangeException

关于设置多个ItemsSource时报错ArgumentOutOfRangeException今天写个级联省市区的ListPicker,想根据SelectionChanged来动态改变可是一直报错rgumentOutOfRangeExceptionInitializeComponent();province.ItemsSource=GetItem(“”,””);      city.ItemsSource=GetItem(“北京市”,””);

关于设置多个ItemsSource时报错ArgumentOutOfRangeException

今天写个级联省市区的ListPicker,想根据SelectionChanged来动态改变

可是一直报错rgumentOutOfRangeException

InitializeComponent();
province.ItemsSource=GetItem(“”,””);

          city.ItemsSource = GetItem(“北京市”, “”);

         area.ItemsSource = GetItem(“北京市”, “北京市”);

 //以下是级联省市区
private void province_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{

province1=e.AddedItems[0].ToString();
             List<string> list=GetItem(province1,””);
             list.TrimExcess();//出去list中的null
             city.ItemsSource = list;
}

private void city_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{

city1=e.AddedItems[0].ToString();
area.ItemsSource=GetItem(province1,city1);
}

private void area_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{

// TODO: Add event handler implementation here.
}

后拉发现,ItemsSource进行绑定时会触发SelectionChanged事件

结果是绑定完province后province_SelectionChanged()执行导致city的ItemsSource改变

今天的文章关于设置多个ItemsSource时报错ArgumentOutOfRangeException分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/29277.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注