Tagged Questions
0
votes
1answer
102 views
Listbox is disabled and vertical scrollbar goes way with silverlight
I have this
<ListBox
ItemsSource="{Binding Students}"
SelectionMode="Extended"
Name="listStudents"
Height="430"
...
0
votes
1answer
61 views
Nested Checkboxes in a ListBox in Silverlight 4
With Silverlight 4 as the technology platform, using an ObservableCollection as the ItemSource, assuming each item in the ObservableCollection has a property called SubLayers which contains children, ...
0
votes
0answers
132 views
Silverlight Toolkit ListboxDragDropTarget with a custom Listbox template misinterpreting click as drag
I have a silverlight app with a Listbox. The listbox already was styled to use custom items. The list box is wrapped in a toolkit:ListBoxDragDropTarget.
<toolkit:ListBoxDragDropTarget ...
0
votes
2answers
99 views
Is Binding ListBox to Collection<State> possible in Silverlight?
In silverlight is databinding to collection<*> allowed ? Because i did the below and nothing happens
<SilverlightToolkit:Accordion Name="ToolboxCategories" SelectionMode="ZeroOrMore">
...
0
votes
0answers
56 views
Listboxes in Silverlight
I've been working on an application for Windows Phone 7. I made a listbox and it get it's items from another .cs file and I have a GestureListener for when someone taps one time on an item of the list ...
0
votes
0answers
1k views
Silverlight checkbox checked unchecked events get fired while scrolling into the listbox
I have a listbox and i have added stackpanel within datatemplate as shown below.
Main.xaml code:
<Grid x:Name="LayoutRoot" Background="White">
<ListBox ...
0
votes
1answer
791 views
Silverlight listbox doesn't refresh list
I'm trying to load a listbox with a list of items being pulled from an OData web service. The data fetch is working well and I'm getting the list of items. The listbox actually works and displays the ...
0
votes
1answer
1k views
Highlight selectedItem in listbox
I am developing a Silverlight application which has a list
<ListBox x:Name="_list_collection"
SelectionChanged="SelectionChanged"
ScrollViewer.VerticalScrollBarVisibility="Auto"
...
1
vote
1answer
298 views
Control size of ListBoxItem (with DataTemplate) using RadioButtons
I´m displaying images in a ListBox and i want to control the size (small, medium, big) of the images with RadionButtons. The ItemsSource of the ListBox is bound to a property of a viewmodel. My ...
0
votes
1answer
412 views
Silverlight 4.0 disable some ListBoxItems with XAML binding
Is it possible, in Silverlight 4.0, to disable some ListBoxItems with XAML binding?
I have found some solutions in the web, but nothing that works with Silvelight 4.0
Thank you!
Pileggi
2
votes
0answers
271 views
How to Save to Database from ListBox?
I know how to save to my database from a datagrid's selected row, but I want to save all records from my list box to the database. Here is the related xaml for the ListBox:
...
1
vote
1answer
214 views
wp7, listbox of ~80 items not populating when navigating back to it
I think this has a lot to do with how I'm structuring my listbox in XAML and the data virtualization happening with the box itself, but I need some help being pointed in the correct direction.
I ...
3
votes
3answers
2k views
Listbox SelectionChanged firing when setting to -1 within function, wp7
I am running into a very odd problem in c# and I just wanted to know what is causing this. I have my theories, but not entirely sure and just want to see if it can be reproduced.
Standard Pivot Page ...
0
votes
2answers
640 views
windows phone 7, selectedindex and propertychanged event problem
I am having this problem with my listbox, notifypropertychange event, and setting the selectedindex = -1 upon the transition to the next page.
Basically, I select an item from a list. In doing so it ...
0
votes
1answer
215 views
Access Bound Data in ListBox.ItemTemplate using Custom Control (Silverlight 4)
I Have a ListBox and I am defining its ItemsTemplate using a custom control. I want the control to be displayed in different ways depending on the state of cetain properties of the object. How can I ...
0
votes
1answer
176 views
DataBind variable to ListBox.SelectedItem property
I have a ListBox (lstBxsources) that is populated correctly and works like it should.
<ListBox Name="lstBxSources" ItemsSource="{Binding}" >
<ListBox.ItemTemplate>
...
0
votes
2answers
314 views
Floating ListBox Elements in Silverlight
Is there a way to mimic the CSS float: left; behavior for ListBox elements?
I have a situation where I need to display a dynamic number of buttons on a page and they all need to sit next to each ...
1
vote
4answers
4k views
How to change listbox item's color individually programmatically in silverlight?
I have an chat like tcp application.I want to differ the colors of sent and received messages. How can I do that programmatically?
Any help is appreciated
Edit
It would be ok if I can change the row ...
0
votes
1answer
359 views
How can I visibly collapse a single row in a Silverlight 4 ListBox without actually removing the row?
Working in C# and Silverlight 4, I am using a ListBox bound to a data source. At this time three items are in the data source and thus appear in the ListBox. I need the third item not to appear in the ...
2
votes
1answer
168 views
Multiple ListBoxDragDropTargets on a page causes poor performance
I'm working on a Silverlight application in which a user needs to be able to drag an item from a single source ListBox and drop it into any of a significant number of target list boxes. I have this ...
0
votes
1answer
167 views
How to create the resolution specific listbox?
I am developing silverlight application. I have a listbox in my application. I am doing dynamic binding with that listbox. My xaml and code behind code for dynamic binding is present in the following ...
1
vote
1answer
601 views
How to do dynamic binding with Listbox in silverlight?
I am developing silverlight 4 application. I am using the following listbox for dynamic binding
<ListBox Margin="44,100,46,138" x:Name="lstbox1">
<ListBox.ItemTemplate>
...
1
vote
3answers
1k views
silverlight 4 : ListBox with wrapping and virtualization
I'm trying to configure a ListBox in silverlight to get both Wrapping and virtualization.
Here is my current solution, with Silverlight toolkit WrapPanel:
<ListBox ...
0
votes
2answers
317 views
Dragdrop from listbox to listbox in silverlight
I am using a listbox to bind the data coming from the database, once the binding is done there is another listbox where i have to drag and drop the contents of the first listbox. I am able to drag and ...
0
votes
1answer
234 views
Customize text of TextBlock Text within ListBox dynamically
I have a ListBox with a custom DataTemplate as follows:
<ListBox>
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
...
0
votes
2answers
3k views
Bind ListBox to Dictionary<int, string>
I would like to bind a Silverlight ListBox to Dictionary<int, string>. I have tried the following without success:
someListBox.ItemsSource = someItems;
and
someListBox.ItemsSource = ...
0
votes
2answers
304 views
How can I expand a ListBox item to the side?
I have a ListBox which contain text and image. When the user click on an Item I want that it will expand to the side and will show some more information.
I have tried to do it with Expander control, ...
0
votes
1answer
148 views
Is it possible to Enter editmode to a list box in Grid without double click on the cell?
I was following the example in the following link to try out listbox in the grid
http://forums.silverlight.net/forums/t/53435.aspx
it works except that, I need to double click on the cell to enter to ...
0
votes
1answer
600 views
Silverlight MVVM listbox set to horizontal scroll - how to capture mousewheel and scroll the listbox from viewmodel?
Silverlight MVVM listbox set to horizontal scroll - how to capture mousewheel and scroll the listbox from viewmodel ?
Note-- I don't want to select a new item for the user... As they may wish to keep ...
1
vote
1answer
1k views
Silverlight 4 Listbox - Programmatically Selecting Multiple Items
I have a Silverlight 4 ListBox control with SelectionMode="Extended". How can I programmatically select multiple items from the code behind?
-1
votes
2answers
4k views
SilverLight 4 - checkboxes in listboxitem checked/unchecked randomly
I have a ListBox. In every ListBoxItem there are two TextBlocks and one CheckBox. At first I have all checkboxes checked. After unchecking one checkbox and then scrolling, the checkboxes get checked ...
1
vote
1answer
2k views
Listbox binding in Silverlight
I have a listbox on silverlight page, the datacontext of the page is set to an instance -- TestQuestions, please see the code below. The listbox uses a DataTemplate and its ItemSource is 'Answers' ...
0
votes
1answer
1k views
Silverlight ListBox DataTemplate
I have a Silverlight 4 ListBox with a created DataTemplate attached to it that correctly shows the items I want.
I would like to be able to have each Item in the list display differently according to ...
2
votes
1answer
448 views
Setup listbox selectedItem event in Expression Blend
I am trying to learn to use Expression Blend to build SilverLight UI. I am currently working with the ListBox and have managed to add it to my page. In addition, the list box is data-bound to a sample ...
0
votes
1answer
93 views
How to make a ListBox longer than the page?
I have a list of 100 or so items. I'd like to output all the items to the page, one beneath the other. Maybe 25 or so items will be visible initially, and when the users scrolls, the rest of the ...
0
votes
3answers
385 views
Determine the width of the widest element in a ListBox
When you do not explicitly set the width of a ListBox, it will automatically set its width to the width of its widest visible item. This means that as you scroll up and down and the widest visible ...
1
vote
1answer
1k views
Silverlight 4 and LisBox's SelectedItem when using DataTemplate as ItemTemplate
I'm using tow listboxes for drag n drop where user can drag items from source listbox and drop on the target. I'm using a DataTemplate for the ListBoxItems of my ListBox Controls.
I need to give ...
2
votes
2answers
1k views
How to set ListBox's Scrollbar position?
I'm developing a silverlight 4 application and I often use Listboxes and databinding. What I would like to do is set the scrollbar position to the bottom of my Listbox. Is there a simple way to do ...
2
votes
2answers
414 views
Silverlight Listbox with variable height fitting to content
How do I configure the listbox in Silverlight to have variable height ?
9
votes
1answer
18k views
Windows Phone 7: Highlight Selected Listbox item
I have the following XAML (simple list box with custom DataTemplate). I'm trying to figure out how to highlight the selected item (maybe background colour change). I figure I need to do something ...
0
votes
1answer
546 views
Allowing item selection indicator in ListBox to overlay all items in Silverlight
I have a ListBox that uses a WrapPanel for its ItemsPanel, a custom ItemTemplate, and a custom ItemContainerStyle. The ItemContainerStyle's template contains a selection box that shows up when an ...
0
votes
2answers
407 views
Rearrange items in ListBox
Hey,
I have a ListBox with a number of ListBoxItem objects. What is the best way to allow users to rearrange the items by dragging and dropping? Do I have to use StackPanels instead?
Thanks for any ...
0
votes
1answer
680 views
Customising Silverlight AutoCompleteBox with multiple filtered ListBoxes
How should I go about customising the AutoCompleteBox in Silverlight so that while typing I can filter multiple Selector ListBoxes. Basically I want a Popup that contains 'n' ListBoxes vertically ...
0
votes
1answer
846 views
Listbox items not selectable
In silverlight, I'm creating a listbox at runtime. The listbox displays on the page okay but the items aren't selectable - I don't understand why? Am I doing something wrong? Here's my code:
C#
...

