Tagged Questions
0
votes
1answer
48 views
Implementing color change for selection changed in ListBox
I'm working on Telephone App, which have a situation like when a missed call or unanswered call was recorded that phone number should appear red in listbox and when that number is selection changed it ...
0
votes
2answers
94 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
0answers
31 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 ...
0
votes
0answers
111 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
79 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
678 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
150 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 ...
1
vote
2answers
112 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
27 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 ...
2
votes
2answers
473 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
111 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 ...
0
votes
1answer
713 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
137 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
3answers
69 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
1answer
148 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
165 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
386 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
56 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
1answer
304 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
175 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 ...
0
votes
0answers
121 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
215 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
108 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
156 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
248 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
2answers
169 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
298 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" ...
0
votes
3answers
1k views
adding a ListBoxItem in a ListBox in C#?
I know that:
String test = "test";
ListBox.Items.Add(test);
or
String test = "test";
int index = 1;
ListBox.Items.Insert(index, String);
adds the String in a ListBox, but I want to insert ...
0
votes
2answers
79 views
WP7 : Populating a ListBox depending on the input from another ListBox
I'm trying to add ListItems to a ListBox (ListBox3) depending on the selectedItem of another ListBox (ListBox1). The problem is , The Items aren't added to the Listbox.
Here's the code :
...
0
votes
0answers
150 views
Listbox selected value is not picking the correct value
I have some data in Table:Table_Test having data as mentioned below:
ID CountryCode CountryName
1 XXX Test_1
2 XXX Test_2
The above data is bound to a listbox. Now in the ...
0
votes
1answer
162 views
Format ListBox Items bound to a Datatable in C#
I have a Datatable with a field named "path" that stores full path of a file. I have bound the "path" field to a listbox. The listbox shows the full file path but I want to format the path so it only ...
-1
votes
3answers
110 views
How to select an item in a ListBox based on the order of the items as they appear on screen
My WPF application has a ListBox in it. The ListBox's ItemsSource property is set to a collection of objects I have defined. These all descend from UserControl.
I need to loop over the items in the ...
1
vote
2answers
269 views
Can you insert items between ListBoxItems in a ListBox?
Simple question. We want a divider to appear between each item in a horizontally styled listbox. Think the arrows between entries in a crumbtrail. However, we don't want that divider to be part of ...
0
votes
2answers
131 views
How can I set a standard gradient on a listbox for different colored listboxitems?
I have a listbox with different colored listbox items, each containing text. I would like to apply a standard gradient pattern of light to dark from top to bottom on each of them.
I am able to do ...
0
votes
3answers
111 views
Setting a Grid as ListBoxItem.content
I'm trying to create a grid, and set it as the content for a ListBoxItem. I'm doing this in C# in PrepareContainerForItemOverride() method of ListBox class for performance reasons.
protected override ...
1
vote
0answers
35 views
How to determine ListtBoxItem height inside a scrollviewer?
I have a listbox inside a Scrollviewer. Listbox doesn't have a scrollviewer(vertical scroll bar visibility=disabled), so I can't use SrollIntoView. I can only use Scrollviewer.ScrollToVerticalOffset.
...
0
votes
1answer
202 views
Refreshing the listbox item after an element is changed
I have a ParameterItem class for adding some items to a listbox:
class ParameterItem
{
public string Name { get; set; }
public string Value { get; set; }
public ParameterItem(string ...
0
votes
1answer
155 views
Listbox Scrolling like windows phone
Im trying to use (in a WPF application) the listbox as I used into Windows Phone 7.1 Application.
In my Wp7 app the scroll is smooth and I can hold one listboxitem and scroll it!
Is that possible to ...
0
votes
0answers
94 views
Get ListBoxItems as images and print them
I am trying to print the items of a listbox as images in a flow document. The listbox is bound to an observable collection. When I go to print it, only the first item in my lisbox shows. The rest of ...
1
vote
2answers
205 views
Convert ListBoxItem to Image
I have a listbox, whose ItemsSource is binding. Is there anyway to convert each individual listbox item to an image of what is seen on the screen at runtime?
EDIT:
I have this right now, it doesn't ...
0
votes
1answer
49 views
How to style ListBoxItems like they are kept one behind another
I have a listbox with large number of items. I would like to arrange the items in such a way, such that they look like they are arranged one behind another (as shown in the attached image), but not ...
0
votes
1answer
131 views
Updating WP7 ListBox
I have a webservice which contains a phone numbers.
The phone queries the webservice to get the phones list and display them in a ListBox.
The problem is that I do not know how to query the phone ...
0
votes
1answer
298 views
Alternate row colour WP7
I want to have alternating background colors of a listbox in my MVVM Light WP7 project.
WP7 has no support for alternating the background color of the ListBox items background.
I have a listbox that ...
0
votes
2answers
493 views
Styling a ListBoxItem depending on its index in the ListBox
I want to change the margin of the first item in the ListBox if SomeProperty value is 10, without code-behind.
This is what I have so far:
<ListBox x:Class="Windows.CustomList"
...
0
votes
1answer
265 views
Changing selected state of items in bound listbox
I'm trying to change the selected state of items in a bound listbox based on if an object is used in the class that the item is bound to, I just can't seem to find a way of doing it and it has to ...
1
vote
1answer
314 views
Python Tkinter:When string with space inserted into Listbox, brackets appear
For some reason in the listbox there seems to be brackets around a string that ends with a space.
from Tkinter import *
def update_listbox():
for i in dic:
listbox.insert(END, (i, ...
0
votes
0answers
137 views
unfocused ListBoxItem style
I want my ListBoxItems to be highlighted with the same color when the ListBox is unfocused and focused. I've tried the following:
<Style TargetType="ListBoxItem">
...
0
votes
0answers
85 views
According to the data in a WPF ListBox custom Item's position?
How can I custom Item's position according to the data in a WPF ListBox ? May be all items are
Scattering to display. In other word, they are not on one same line.
Anyone kown this or you can ...
0
votes
2answers
307 views
set value for listboxitem templated binding
I have this style:
<Style x:Key="SelectableListBoxItemStyle" TargetType="{x:Type ListBoxItem}">
<Setter Property="Template">
<Setter.Value>
...
2
votes
2answers
1k views
Access ListBoxItem-Controls in WPF ListBox
In WPF application I create Listbox with it's ItemTemplate defined in following DataTemplate in XAML:
<DataTemplate x:Key="ListItemTemplate">
<Grid>
<Grid.RowDefinitions>
...





