Tagged Questions
2
votes
1answer
37 views
ListBox SelectionChanged SelectedItem not updating on some machines
I have written a small WPF application to edit a config file.
The GUI mainly consists of two ListBoxes. The content of the second ListBox depends on the selected item of the first ListBox and should ...
2
votes
3answers
34 views
How to get indices of selected items in WPF's listbox?
Before you mark this question as a duplicate or suggest using Items.IndexOf, please do the following:
public MainWindow()
{
InitializeComponent();
var A = new object();
var B = new ...
0
votes
0answers
20 views
How do I remove the default Mouseover/Selcted Item highlight style on a listBox/ListView when using a DataTemplate as my ItemStyle?
When using a Listbox I normally use an ItemContainerStyle for the style of my items. I could then change my default mouseover highlight style no problem. With a DataTemplate as my Item style I cannot ...
-2
votes
3answers
101 views
How Do I Sum Items in the List box?
I have two ListBoxes, Source and Destination. The destination ListBox has Items selected by the user.
How do I sum items in a destination ListBox?
The Destination ListBox has two data types String ...
0
votes
1answer
51 views
MVVM how best to display ListBox.SlectedItem
I have a ListBox bound to a list of ViewModel objects on the LHS of my screen. The ListBox.SlectedItem is bound to a property on my "MainWindowViewModel", called CurrentItem. On the RHS I have a large ...
0
votes
2answers
45 views
Single selection listbox selected items to another listbox
I've tried quite a few options but none of them has gotten me closer to the results.
I'm really new to WPF, so I'm sorry form my perhaps trivial question.
I have a single selection listbox and I ...
0
votes
0answers
20 views
How to implement Drag & Drop on Telerik RadList with bound ItemsSource?
I am trying to implement Telerik's Drag&Drop behavior to a RadListBox control, to allow reordering the list items via drag and drop, but I get the following exception on dropping an item in the ...
1
vote
1answer
30 views
How to stop a ListBoxItem from being selected if the data related to the previous one is incorrect?
I have a ListBox which when clicked displays data to the user. If the user enters invalid data and they click another item in the list I want to prevent the ListBoxItem they clicked from being ...
1
vote
2answers
53 views
What's the difference between ItemTemplate and ItemContainerStyle in a WPF ListBox?
In WPF Listbox, I'm confused with these 2 notions:
ItemTemplate and ItemContainerStyle
Can someone explain me more?
3
votes
3answers
75 views
ListBox selectedItem get working but set not working in MVVM
I am working on a WPF application and following MVVM. In my view there is a grid view which contains different columns. One of these column is a ListBox. Now problem is that for the ListBox column, ...
-5
votes
1answer
59 views
binding an List of objects to a Listbox
i have the following XAML code
<ListBox x:Name="TrackedProgramList" Height="145" Width="605" ItemsSource=" {Binding}" >
<DataTemplate>
<StackPanel ...
0
votes
1answer
43 views
Master-detail hierarchy between a ListBox and a DataGrid
I would like to set a DataGrid.ItemsSource property according a ListBox.SelectedItem value so that whenever a category is selected in the ListBox, the DataGrid should display the appropriate ...
1
vote
1answer
33 views
Why ListBoxItems does not get all the available space?
Take this simple example:
<Grid>
<ListBox>
<ListBox.ItemTemplate>
<DataTemplate >
<Grid HorizontalAlignment="Stretch">
...
-1
votes
0answers
28 views
WPF application settings bound to ListBox
I have a strange behaviour in my WPF application that I do not understand.
I use a ListBox with an ObservableCollection that is within my Settings.Default object.
<ListBox ItemsSource="{Binding ...
-1
votes
1answer
53 views
Change color of selected items in listbox [duplicate]
Currently when an item is selected (but the control is not) the item is in a very light grey (almost not visible) - this happens when I load my window and programatically set the SelectedItems ...
0
votes
1answer
12 views
WPF layout problems using Grid and ListBox
I'm (sort of) a newbie in WPF. And I'm stuck with this layout. The Viewbox is displayed fine and so is the space (30%) for ListBox but I can't see ListBox in that space. Following is my XAML, just ...
0
votes
0answers
30 views
Initially set (highlight) multiple items in a ListBox (Galasoft MVVM)
When I load my open my window I want to SET (highlight) the items (could be multiple) that the user selected last time (in settingService.DaysToSplit). To do this I save the users selection (as a ...
-1
votes
2answers
49 views
Binding a ListBox to a List<string>
I am trying to bind a list of strings to the contents of a list box. For some reason, I get results for bluetape list, but the contents of BluetapeList does not ever make it into the listbox. Any ...
-1
votes
0answers
44 views
Convert C# To XAML, Bind, ScrollBar, ListBox & WPF
How do I convert this C# code to XAML || bind "ScrollBarTimeLine" to "s"?
ScrollBar s = (ScrollBar) ...
-1
votes
0answers
25 views
WPF Theme listview text error (Expression Dark)
ok so today I added a theme to my WPF project and I have a listbox that loads content from a folder and I was faced with this problem right after I added the theme to App.XAML
Problem
...
0
votes
1answer
37 views
How to get checked items from a listbox
I am new to WPF and trying to add some checkbox items to a ListBox dynamically and then on click of the button I am trying to get the checked items from the listbox. But the problem is that there is ...
0
votes
0answers
25 views
WPF : ListBox with check boxes after Filter
I am looking for a solution when I have one listBox with texbox as a filer.
And, after my filter text is changed - I use Items.Filter method.
listBox.Items.Filter = new Predicate<object>(x ...
0
votes
1answer
51 views
When using ListBox in WPF, how to get access to the selected value(s) programmatically
In my code I'm using a list box to display objects from a class I'm creating. What I want is to be able to click on an item in the list box and programmatically use the selected item. The items come ...
0
votes
2answers
72 views
Updating a ListBox on another window from sql server table, c# wpf
start of by saying im using c# in wpf, so I am having this new problem with a listbox in my main window (SalesScreen). I have a window called SearchScreen that has a datagrid that is populated from a ...
0
votes
0answers
54 views
Double Click on ListBoxItem with grouping
I have ListBox with Grouping and Sorting
<Style x:Key="ContainerStyle" TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
...
1
vote
1answer
21 views
style of selected item in lisbox
I have a list box which is bound to a list of strings.
<ListBox Grid.Row="1"
Height="130"
Background="Black" BorderThickness="0"
...
1
vote
1answer
67 views
Get item from custom control / C# WPF
I have 2 classes:
class MultiSwitch : ListBox
{
protected override bool IsItemItsOwnContainerOverride(object item)
{
return item is MultiSwitchItem;
}
protected override ...
0
votes
0answers
88 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
1answer
55 views
Wpf Close popup when ListboxItem is selected
I have listbox inside popup. How would I close popup right after I select item from list box;
here is code:
<Popup x:Name="ColorPopup" AllowsTransparency="True"
IsOpen="{Binding ...
0
votes
1answer
37 views
Mediaelement Playlist repeat how to?
I Can't find any solution how to reset the index when last file has been opened.
I have a mediaelement that reads images from a listbox and when last image has been played I want it to restart. Like a ...
0
votes
1answer
63 views
wpf listbox and datatemplate with grid inside
i have a following question. I want to have listbox with datatemplate as grid. This grid has 2 two columns. I want to set first column width to "3*" and another to "*". How to do this? I will copy my ...
-2
votes
0answers
38 views
How to repeat a listbox that works like a playlist? [closed]
I have a playlist that contains all mediafiles.
I want the application to repeat to start after last mediafile is played.
0
votes
1answer
54 views
Listbox Not Tracking User Input
I've got a ListBox that is displaying a dynamic number of TextBoxes. The user will enter text into these boxes. When the Submit button is clicked, I need to be able to access the text the user has ...
0
votes
0answers
97 views
can't clear WPF ListBox.SelectedItems collection
I can't seem to get the SelectedItems collection of a data bound WPF ListBox to clear. I've tried calling ListBox.SelectedItems.Clear(), i've tried setting the SelectedIndex to -1, setting the ...
-1
votes
2answers
38 views
How to change part of the datatemplate background
I have a ListBox, its DateTemplate like this:
<Grid Margin="30,0,0,0" HorizontalAlignment="Left">
<Grid.ColumnDefinitions>
<ColumnDefinition />
...
1
vote
1answer
50 views
How to a set some text based on the contents of a radiobutton?
I have a fairly basic C#/WPF question. I have a listbox that I can add radio buttons into. I set the listbox selection mode to 'single' so I can only select one at a time. What I want to do is based ...
1
vote
1answer
55 views
Binding ObservableCollection of strings to templated ListBox
I have this collection
ObservableCollection<string> Urls { get; set; }
inside my data context class. I have a binding to it in my list box:
<ListBox ItemsSource="{Binding Urls}">
...
2
votes
1answer
79 views
Commanding with Static Items of Listbox using MVVM
I have a list box in my view with three static items(Name,Age,Gender), and I want my ViewModel to do something when an item in the ListBox is selected. I want to do this without any code-behind, using ...
0
votes
1answer
34 views
How do I set the Selector.IsSelected attached property to ListBox items in code?
Reference to WPF 4 Unleashed page 281: "Selector also supports two attached properties that can be applied to individual items".
<ListBox Name="listBox1">
...
1
vote
1answer
78 views
How to update a grid in a listbox with more rows and columns dynamically and programmatically in code (C# and WPF)
I have a ListBox where every of its item has a DataTemplate to define its structure. It initially has a Grid that contains 6 rows and 4 columns. But then during runtime I want to add to a specific ...
0
votes
0answers
41 views
WPF ListBox - Any Event Generated after the ItemSource for List Box assigned
I have created a Data Template with Buttons as shown in the below code for my ListBox . In my control I Keeping performing the addition and deletion of these buttons .
I have a ObservableCollection ...
0
votes
1answer
50 views
Events for Listbox Item
What is the most recommended event to use for listbox items. I have three static items in my list and this should navigate to a page upon clicking. I know that there's no click event for listbox items ...
1
vote
1answer
58 views
When binding Width to ViewportWidth in the ListBox with images the horizontal scrollbar is visible
What I'm trying to achieve is to create a vertical list of photos with frames on the rightmost side of a WPF window. The images are data bound to ObservableCollection and the images list should be ...
1
vote
3answers
58 views
C# Data Loss between windows
In order to navigate my application you are presented with the Mainwindow on load up. There is a button that you can click that opens the TeacherTools window. From here you are able to add new ...
-1
votes
2answers
102 views
Linq Query Object reference not set to an instance of an object
I have a listbox populated with entries from a table using Linq in C#.
I have the DisplayMemberPath set to "Country" Which is fine, no problems there.
When the country is selected from this listbox ...
-1
votes
1answer
42 views
How to start all files in Listbox?
I'm still learning C# and I need some help here.I have a listbox that includes all files that is going to be scheduled, I use DateTimePicker and DateTime for this. The problem is that the program only ...
0
votes
1answer
63 views
Acessing a list within a different class
I've having trouble populating listbox with the information stored within a different class. This class is called TeacherTools which is where a number of methods are used to control the student ...
0
votes
1answer
27 views
Specific control for a specific DataType
I have a List which contains different types of objects:
List<object> myList = new List<object>();
DateTime date = DateTime.Now;
myList.Add(date);
int digit = 50;
...
0
votes
1answer
44 views
Cannot bind objects to ListBox
Cannot bind objects to ListBox. Data are there I guess it is something about Binding.
Any clue?
C#
public sealed class Package
{
public Guid ID { get; set; }
public string ...
5
votes
3answers
110 views
wpf Datagrid columns width fail in ListBox
I have a ListBox that contains items derived from UserControl. The concrete UserControl contains (among others) a DataGrid. Basically I cannot change the concrete UserControl (changes only for testing ...


