The listboxitem tag has no wiki summary.
0
votes
2answers
27 views
Binding an action in an itemtemplate to an event
I have listboxitems in a list-box that are being populated dynamically from an observable collection and I'm trying to use a Interaction trigger for the 'Selected' event of the listbox item to launch ...
0
votes
0answers
23 views
Select Items in Listbox
I have two listboxes and their corresponding data is stored in SQL Server. I am able to load the data of ListBox1 from SQL Server. But I am not able to populate the corresponding data of the selected ...
0
votes
0answers
31 views
Invalid casting with ListBoxItem's Tag property [closed]
I have this class:
public class Conditions
{
public string rule { get; set; }
public string entityA { get; set; }
public string entityB { get; set; }
public string aX { get; set; }
...
0
votes
2answers
54 views
Get items values of ListBox with SelectedIndex
I've got for example ListBox with two TextBlocks like this:
<ListBox Name="listboxNews"
SelectionChanged="listboxNews_SelectionChanged">
<ListBox.ItemTemplate>
...
0
votes
1answer
64 views
How to set selected LIstbox item border color highlight in windows phone?
Hi i want selected listbox item highlight border color.am using code given below.please help me any one.
<ListBox x:Name="NotchsList11" Width="Auto" Grid.RowSpan="5" Margin="0,59,0,0">
...
0
votes
0answers
25 views
Add style to the last item that was added to a listbox
I would like to add a style to a listbox item that was just added. Then, when the next item is added, remove the previous items style and add to the newly entered item. How would I do that? Add help ...
1
vote
1answer
65 views
Convert listbox items of type “objects” to type “int”
So I have a project to make a bank account system with a deposit function. I cannot however deposit the amount entered into the textbox because the items in the listbox are of type "object". How can I ...
0
votes
1answer
54 views
Multiple text lines in a ListBox Item template?
I need to have two line listbox items for my WP7 app one line which is the heading and then a smaller subheading with some details. How can I do this in WP7?
I am using VS2010 and expression blend to ...
0
votes
1answer
103 views
WPF - ListBoxItem - Change DataTemplate element colors dynamically
There are several articles written about similar tasks to this. However, none seem to be close enough to work for what I am doing. I have a custom control that has a ListBox in its template. I have ...
0
votes
0answers
79 views
how to set the ListBox Property from ListBoxItem in XAML?
I have a ListBox (lbParent)..and it has two listbox items...each of these listbox item ha s a datatemplate...which is having a combobox in it. When user select an item from this combobox...I have to ...
0
votes
2answers
67 views
ListBox Index returns negative value
I'm creating a windows phone app using MVVM light pattern. I'm having trouble on my list box as it always returning a negative value (-1) for selected index. Does anyone knows how to resolve it?
...
0
votes
2answers
384 views
Change style for all ListBoxItem in a ListBox (Windows phone 8)
I have a Listbox with some Listboxitem and I would like to change the style of all items. I know, it's possible to create a style in resources and bind this style to each item but maybe is there a ...
0
votes
3answers
84 views
Remove items from ListBox when DataSource is set
See I have a HashSet with several values, this values can contain for example numbers like 4141234567, 4241234567, 4261234567 and so on. I put a radioButton1 in my UserControl and I want when I click ...
0
votes
0answers
44 views
fetch data from jsp/xml and display it in vb.net
In vb.net 2010 express, i need to fetch data from a jsp.
When a user enters text into textbox,
The program will fetch the information from a jsp url which contains xml
and display it in another ...
0
votes
1answer
54 views
Error when refreshing list box when one of its item is highlighted
I am currently working on a project that has a list box that represents players connected to a server. I templated the list box items so that they contain the picture of the player and its name, with ...
0
votes
1answer
252 views
How can I save all items in listbox to MYSQL database using vb.net
This is my code and I can save only the first item. I need to save the entire list in one database column. Thanks for your help in advance.
Dim mysql As String = "UPDATE tbl_item SET my_item = ...
0
votes
2answers
83 views
Cannot show quickly list of images in WPF ItemsControl
I have ItemsControl (listbox) with some custom complex data templates. And its take few seconds to show window with this listbox!
My listbox datatemplate contains image:
<Image Stretch="Uniform"
...
0
votes
0answers
24 views
Modify ListBoxItem Background based on a Reuxable Theme?
I'm trying to overwrite the background of a ListBoxItem on MouseOver/IsSelected. I'm using a free Reuxable theme, but I don't have the code, only the dll.
For some reasons, the background doesn't ...
3
votes
2answers
422 views
Complex UI inside ListBoxItem
In WPF, I can add whatever UI into ListBoxItems by providing the ListBox with an ItemTemplate:
<ListBox ItemsSource="{Binding}">
<ListBox.ItemTemplate>
...
0
votes
1answer
87 views
How to change the background colour of a one particular listboxitem in a listbox in metro app?
i am developing an c#/xaml metro application .
I am having a listbox , in which depending upon on one particular condition i want to change only one listboxitem background colour .
This is how i ...
1
vote
1answer
239 views
If condition to compare listbox selected value to value in a class
I am trying to make an if condition, where the I compare the selected value to a name value I have created in another class.
//I populate the list with the following code:
module.Add(new ...
0
votes
1answer
528 views
WPF Listbox Selection change not firing on Item click
In my wpf application when I select listboxItem, SelectionChanged event of listbox is not firing. However event fires when I click on outer margin.
have a look at below snap.
so basically, when I ...
2
votes
2answers
131 views
Double Value (abreast) in Listbox between another page (Session) . I Need Text + Value in Listbox between Pages (variable Session)
Hello All,
Pleas, i have small Problem. There are 2 Pages . In One Page through Button1 Add Text and Value ("123456", "Jan Novak") to Listbox. I need These both value from Listbox in another Pages ...
0
votes
0answers
48 views
Is usage of a converter allowed in a datatemplate of listbox.itemstemplate?
I have a listbox that contains players. Through templating the players are displayed on a field. The players holds a topposition and leftposition attribute that are bound to a top and left property of ...
0
votes
3answers
65 views
Update a listboxitem through code where a specific column = value x
I have a wpf form with a listbox that has 2 columns.
I use this code to add values to the listbox :
playersOnlineList.Items.Add(new { Username = username, Status = "Lobby" });
I use this code to ...
0
votes
0answers
56 views
touch events on surfacelistboxitem
I'm adding dynamically items in a SurfaceListBoxItems collections. How do I find out witch item is selected or touched so I can open a new window on account of this touch?
MainContentControl ...
2
votes
1answer
114 views
Binding the content of a ListBoxItem to something not related to
I'm new to WPF, but am pretty familiar with binding list box controls to observable collections in the view model.
In my current project we have a ListBox that is used for navigating to different ...
2
votes
1answer
409 views
Disable selection of an ListBox item based on binding value WPF [duplicate]
Possible Duplicate:
How to disable a databound ListBox item based on a property value?
I have a listbox and would like to make some of the items in the listbox non-selectable based on the a ...
0
votes
0answers
66 views
Capturing mouse wheel on listbox items
I have a listbox which is populated with a relatively small number of items. The items don't fit on the screen, so the listbox automatically gets a vertical scrollbar on the right. The scrollbar ...
0
votes
1answer
125 views
How to freeze first item of listbox in wpf?
I have a listbox with radio button as its items. The listbox is scrollable and can add as many items as possible. But, I have to keep the first item freezed as it should be visible all the time. Any ...
1
vote
1answer
148 views
Dragging buttons in ListBox in WP7
I am facing a problem in list box which containing a Grid with three buttons.
I have implemented swap feature of buttons inside this grid.
My problem is when I drag button from left to right and ...
1
vote
1answer
353 views
Populate comboBox from listBox values in C#
I can't solve this problem. I need to populate comboBox items from values in listBox (Windows Form in C#).
Every time I add values in listbox, combobox automatically has to be populated.
Thanks in ...
0
votes
1answer
50 views
How to preselect an item using Javascript when the page renders
I have a drupal rendered webform that generates the following HTML for a SELECT list. The list is essentially for booking a table in a restaurant. My client wants me to preselect the meal based on the ...
0
votes
0answers
21 views
LazyListBox with ListBoxItem auto height workaround?
I have an application where user can browse tv listings.
Here is typical listboxitem
|=====================|
|Title and time=======|
|=====|===============|
|Image|Long descript==|
There are a few ...
0
votes
0answers
36 views
I have monthly future value, but I want to view it by year in a list box.
for (int i =0; i < intmonths; i++)
{
decFValue = (decFValue + decMInvestment)*(1+decMIntrest)
if (intmonthly % 12 ==0)
{
lstFutureValue.Items.Add("Year: " + (i+1));
lstFutureValue.Items.Add ...
0
votes
1answer
261 views
Passing data from listbox navigation Windows Phone
I'm getting data to create a Listbox like a blog with JSON from a webblog, I want to pass this data when you select one item, to another simple xaml page with the information of this news(Title, ...
0
votes
1answer
152 views
Multiple Item Drag 'n' Drop from ListBox
I have a ListBox and I want to be able to click on multiple items and then drag into another program. I can get it working fine for a single object. I just can't get it working for more than 1.
I had ...
-3
votes
2answers
131 views
Lists in Visual Studio using C#
I'm really quite new to developing apps, but I have some understanding of what I'm doing. I'm using Visual Studio Express for Windows 8
I've created a List (List A) with ListBoxItems which, when ...
0
votes
0answers
108 views
Get item text from listbox
I'm making a UserControl which uses a ListBox. In some moment I need to get the text of the selected item in the ListBox. The "normal" way I would go is:
var selected = ...
1
vote
1answer
194 views
ListBox/ListBoxItem for BoundData Style Template Clarification WPF XAML
How do I get a databound ListBox to accept a templated Style (from within my ResourceDictionary with the same name as the respective Style) for the ListBoxItem?
I see in Blend 4 that within the ...
0
votes
2answers
102 views
The <f:ajax event=“valueChange” /> won't get triggered due to a <h:selectOneListbox /> with only one element/item
My <h:selectOneListbox /> works well when it contains more than one element, but a problem occurs when there is only one single item: the listbox get displayed as a dropdown list, and my nested ...
0
votes
1answer
145 views
How can i know if a ListBoxItem is the last item inside a Wpf's ListBox?
How can i know if a ListBoxItem is the last item of the collection (in the ItemContainerStyle or in the ItemContainer's template) inside a Wpf's ListBox?
That question is because I need to know if an ...
1
vote
1answer
218 views
WPF ListItem Template - Button to Fade In
I have a ListBox with an ItemTemplate (shown below) that when the mouse is over an item, a button is displayed that will fire a Delete Command.
This works, but what I'd like is for the button to ...
0
votes
1answer
360 views
WPF - ListBox ContentTemplate textbox MouseDown causing listbox item to NOT be selected
SUMMARY: Click on listbox item, textbox in DataTemplate gets focused but listBox Item is not selected.
I'm sure this has something to do with event bubbling but I'm missing something here.
I have ...
0
votes
2answers
123 views
Change List colour in ListBox
C#
I currently have a win form and I can display two lists that I have in a Listbox, however since the two lists are merged the data can be a bit confusing to look at. Is there anyway that I can set ...
0
votes
2answers
117 views
How i get the control inside dataTemplate in windows phone?
I want change the color os background of the border each listboxitem increase.
<ListBox.ItemTemplate>
<DataTemplate>
<border x:name: border>
...
0
votes
2answers
164 views
moving object from listbox to another listbox in C# winform
How i can moving object( that is include name and id) from listbox to another listbox and save it?
i wrote this:
if (lstActivity.SelectedIndex != -1)
{
int ...
1
vote
1answer
197 views
Silverlight 5: Binding command to listboxitem
I am beginner in silverlight and all this mvvm pattern is bit confusing.
In my application I have two listboxs one for country and one for states.
What I want to do is when I select a Country from ...
1
vote
2answers
387 views
Changing the background color of a ListBoxItem
I'm writing a Windows Store app in C#, how would one go about changing the background color of a ListBoxItem?
1
vote
1answer
285 views
Windows store apps - how to use a custom template to a ListBoxItem in C#?
here's an example of my ListBoxItem in a ListBox with a custom template:
<ListBox Margin="0,140,0,0" x:Name="ListBox_Main" VerticalAlignment="Top" Foreground="Black" ...





