本文介绍了C#.net代码“我们如何根据Windows Phone 8应用程序中的ComboBox名称(ID)添加项目到组合框(ListPickr)?”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请给我示例c#.net代码"我们如何根据该组合框名称(ID)向组合框(ListPickr)添加项目)在Windows Phone 8应用程序?" ..

Please Give me sample c#.net code for "How can we add Items to combobox(ListPickr) Based on that ComboBox Name(ID) in Windows Phone 8 Application?"..

Ex: - 我们有4个组合框(ListPickrs).1st one独立动态组合框意味着从查询中检索数据将该项添加到第一个组合框中。第二个是Dependent动态组合框意味着第二个组合框项目是根据第一个组合框选择的项目
和第三个和第四个相同而添加的。现在在这4个组合框中名称不同,那么如何将项目添加到第2和第3个combox中。

Ex:- We have 4 comboboxes(ListPickrs).1st one is Independent dynamic combobox means retrieve the data from query and add that items to 1st combobox. 2nd one is Dependent dynamic combobox means 2nd combobox items added based on 1st combobox selected item and 3rd and 4th also same. Now in these 4 comboboxes name are different then how can add items to 2nd and 3rd comboxes.

实际上我正在使用像组合框一样的Listpick。

Actually i am using Listpickr like combobox.

ListPickr cmbBox = new ListPickr();

ListPickr cmbBox=new ListPickr();

cmbBox.Name(喜欢添加所有特性)。这个CmbBox在For循环中运行。这样就可以根据用户需求创建多个combox。

cmbBox.Name(Like add all properities).This CmbBox is run in For Loop.In this way created multiple comboxes based on user requirement.

           现在,第一个组合框项目添加了类似于 

            Now 1st combobox items add like 

cmbBox.Items.Add(" string");

cmbBox.Items.Add("string");

           那么现在我们如何在提出选择更改事件之后将项目添加到第2,第3,第4个组合框。

            Then now how can we add items to  2nd,3rd,4th comboboxes after raised selectionChanged Event.

最后我的问题是"我们如何向组合框添加项目(ListPickr) )基于该组合框名称(ID)?"。

Finally my question is "How can we add Items to combobox(ListPickr) Based on that ComboBox Name(ID)?".

谢谢&问候,

SrinivaaS。

SrinivaaS.

推荐答案

ObservableCollection<string> comboItems = new ObservableCollection<string>();
comboItems.Add("string");
cmbBox.ItemsSource = comboItems;

如果您在添加到列表时没有寻找自动UI更新,也可以使用List而不是ObservableCollection。

You can also use List instead of ObservableCollection, if you are not looking for auto UI update on adding to the list.


这篇关于C#.net代码“我们如何根据Windows Phone 8应用程序中的ComboBox名称(ID)添加项目到组合框(ListPickr)?”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 07:58