The text of this article is not in this database — only its details are. Read it on the old site: ComboBox in Silverlight
14 Comments
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: ComboBox in Silverlight
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
anusha saxenaeditedPosted Jan 29, 2013, 7:21 AMEdited Jan 29, 2013, 7:22 AM
How to fetch images from database using mvvm model in silverlight and show in combobox? Please reply me i am having issue regarding fetch from database.
Thom VanPosted Oct 11, 2012, 11:08 PM
How to set selectedItem in combobox when load page.
Babak SekandariPosted Jul 13, 2011, 11:47 AM
How does one extract the value of the selected item in the combo box?
Web GuyPosted Jul 8, 2011, 12:13 PM
Terrific post my friehnd however I am stuck at the most basic of things. How can I add text to the combo box as displayed in figure #1 - for example I want it to display a description of the items collection. Such as "Select an item."
DavidPosted Jun 28, 2011, 8:31 AM
Idiot Article
mirza baigPosted Jun 14, 2011, 5:44 AM
my requirement is that, i have to get access to the checkbox control which is placed inside combobox control. Declarative code is some thing like this.. <ComboBox x:Name="AreaCombo" ItemsSource="{Binding AreaList}" Width="170" Canvas.Left="92" Canvas.Top="41"> <ComboBox.ItemTemplate> <DataTemplate> <!--<Grid x:Name="RootElement">--> <CheckBox x:Name="AreaCheckbox" ClickMode="Press" Content="{Binding Path=Name}" IsChecked="{Binding Path=IsSelected, Mode=TwoWay}" Checked="CheckBox_Checked" /> <!--</Grid>--> </DataTemplate> </ComboBox.ItemTemplate>
rajib_banPosted Dec 29, 2010, 11:32 AM
Mahesh, Nice article. How do I remove duplicates from my combobox ?
ramesh rameshPosted Jun 18, 2010, 4:26 AM
Thanks Mahesh article is very usefull thanks again
Mukesh ShrimaliPosted Dec 7, 2009, 6:40 AM
Hi Mahesh, I want to know how to combobox bind with database table as I my knowledge Syste.Data.SqlClient not available in Silverlight page........
Krishan krishanPosted Jun 26, 2009, 8:09 AM
As in normal dropdown list or in Combobox we can set TextField and ValueField, can we done same here ?
somanath nayakPosted Jun 16, 2009, 2:07 AM
Dear Mr. Chand, article is nice n useful. thnx a lot. Can u plz help me out in something. i want to return a List<> of objects from a FUNCTION present in WCF service and i want to bind it with the datagrid. but i am unable to do it. the list also can be bound to the listbox or combo box etc. please help me immediately. Thanks, Somanath [email protected]
Mohd ImdPosted Jun 1, 2009, 5:40 PM
Silverlight Combobox looks like a button. How can i change the appearance so that it looks like a simple windows or asp.net ComboBox?
Ye Htut WinPosted Dec 3, 2008, 11:04 PM
private void AddButton_Click(object sender, RoutedEventArgs e) { ComboBox1.Items.Add(TextBox1.Text); } I try to run your example. "add" methods not working property. bcoz of readonly collection. Can u run this?