Tagged Questions
The bindinglist tag has no wiki summary.
15
votes
3answers
4k views
Why aren't classes like BindingList or ObservableCollection thread-safe?
Time and time again I find myself having to write thread-safe versions of BindingList and ObservableCollection because, when bound to UI, these controls cannot be changed from multiple threads. What ...
14
votes
2answers
9k views
ObservableCollection(Of T) vs BindingList(Of T)?
I've developped some data based Winforms Application this last two years and all works fine. This application are built on layers (DataAccess, Business Logic and UI). For the Businness Logic, all my ...
9
votes
2answers
6k views
BindingList<T>.Sort() to behave like a List<T>.Sort()
I am attempting to write a SortableBindingList that I can use for my application. I have found lots of discussion about how to implement basic sorting support so that the BindingList will sort when ...
7
votes
1answer
663 views
Custom ObservableCollection<T> or BindingList<T> with support for periodic notifications
Summary
I have a large an rapidly changing dataset which I wish to bind to a UI (Datagrid with grouping). The changes are on two levels;
Items are frequently added or removed from the collection ...
7
votes
8answers
747 views
Self Sorting Listbox
Totally stumped by something that seems easy, and has been done to death... Yet still stumped.
What I want to do: I've got a WinForms ListBox. Its items are populated with objects, the ...
7
votes
4answers
9k views
DataGridView sort and e.g. BindingList<T> in .NET
I'm using a BindingList<T> in my Windows Forms that contains a list of "IComparable<Contact>" Contact-objects. Now I'd like the user to be able to sort by any column displayed in the grid.
...
5
votes
5answers
335 views
Opinion wanted: Intercepting changes to lists/collections
Although BindingList<T> and ObservableCollection<T> provide mechanisms to detect list changes, they don't support mechanisms to detect/intercept changes before they happen.
I'm writing a ...
4
votes
3answers
2k views
Reordering items in BindingList in C#?
How would I move items in a BindingList in C#? Say, move last added item to the front, or swap with previous item?
3
votes
1answer
91 views
BindingList<T> where T is interface that implements other interface
I am stuck with BindingList where T is an interface that extends A interface. WHen i use this bindingList in bindings, only properties from T are visible, while properties from inherited A interface ...
3
votes
1answer
143 views
DataGridView unwanted calls to EndNew
I am using a class called SimpleFilteredList which I got from this site:
http://blogs.msdn.com/b/winformsue/archive/2007/12/06/filtering-code.aspx
It allows me to apply basic sorting to business ...
3
votes
2answers
1k views
Do I need a BindingSource AND a BindingList for WinForms DataBinding?
I want to display a list of people in a DataGridView in a Windows Forms app. I want my service layer to return a list of Person objects (e.g., IList<Person>). I want changes in the list to be ...
3
votes
2answers
367 views
C# bindinglist made of bindinglists
Is there a simple way to have a bindinglist composed of serveral bindinglists ? ie that is the "view" of the lists.
That is to say : I have 3 lists (list1,list2,list3). I want a list that is alway ...
3
votes
7answers
940 views
How can I fire event before item is added to collection in C#?
I would like to do some processing before an item is added to a BindingList. I see there is an ListChanged event but this is fired after the item is added. The AddingNew event is only fired when the ...
3
votes
3answers
1k views
What causes a ListChangedType.ItemMoved ListChange Event in a BindingList<T>?
I have a BindingList(T) that I am displaying in a DataGrid. I'm watching for ListChanged events and performing different actions when the ListChanged event is evoked.
I'm checking the ListChangeType ...
3
votes
1answer
1k views
Where / When / How does BindingList<T> convert / wireup PropertyChanged to ListChanged event
I have a hierarchy of objects that all implement INotifyPropertyChanged. I also have a custom list that derives from BindingList.
It is my understanding that when I add an object that impelements ...
3
votes
1answer
1k views
InvalidOperationException on Databinding when removing last item in list
I'm getting the following message when I try to remove the last item in a datagridview.
DataBinding cannot find a row in the list that is suitable for all bindings.
I have my binding setup as ...
3
votes
3answers
4k views
Get the Enum<T> value Description
I have my enumHelper class that contains these:
public static IList<T> GetValues()
{
IList<T> list = new List<T>();
foreach (object value in Enum.GetValues(typeof(T)))
{
...
2
votes
1answer
89 views
BindingSource, BindingList, DataGridView and cross-thread access
I have a DataGridView with its source set to BindingSource, whose source is set to BindingList that cotains objects that implement INotifyPropertyChanged. The problem is, the logic that updates items ...
2
votes
2answers
115 views
Binding List and UI controls, not updating on edit
I am binding a BindingList two way to a listbox. The Binding list contains a number of images which apparently only update the listbox if items are added or removed from the binding list. How can I ...
2
votes
1answer
43 views
Parts of BindingList to string array
I'm am using the BindingList to populate some controls.
On part of a form I need to use some of the data stored within the BindingList to create and array. Say I have BindingList<CEmployee> ...
2
votes
3answers
284 views
Winform: Binding a custom control property to a BindingList
I'm trying to create a binding from my custom control to objects that are in a BindingList.
While with textbox, I can easily write
...
2
votes
1answer
220 views
Sortable BindingList<T>: confusion about RemoveSortCore
I'm implementing my own BindingList<T> that supports sorting. Everything is working well so far, but I'm confused about how I should implement RemoveSortCore. The documentation is not very ...
2
votes
1answer
356 views
BindingList with IList<T> DataSource, Element Order
Can I assume that the order of the elements from an IList<T> remains equal, when I use it as a DataSource of a BindingSource (Windows Forms), so that BindingSource.Position and List.IndexOf() ...
2
votes
4answers
711 views
Cross-thread operation exception when worker thread adds to BindingList
I have a worker thread that needs to add items to a BindingList. However, the BindingList is databound to a DataGridView. So, when I try to add to the list, I get an InvalidOperationException ...
2
votes
1answer
1k views
Implementing BindingList<T>
I am trying to learn more about BindingList because I believe that it will help me with a project that I am working on.
Currently, I have an object class (ScannedImage) that is a subtype of a class ...
2
votes
4answers
1k views
Why can i not cast an IEnumerable<T> list to a BindingList<t>?
Is it possible to cast an IEnumerable list to a BindingList collection?
The IEnumerable list is a list of typed objects e.g:
IEnumerable<AccountInfo> accounts = bll.GetAccounts(u.UserName, ...
1
vote
5answers
64 views
Entity.SaveChanges() also saves removed object of a BindingList?
I hope you can help me out, I've being scratching my head the whole night trying to figure out where this bug persist.
I'm writing an invoicing application in winform.
I have a grid on the form ...
1
vote
1answer
127 views
c# DataGridView.DataSource = BindingList Doesn't Work
I create a binding list BindingList<RunData> and pass it through CustomMessageBox.Show() but the DataGridView doesn't display the list elements.
public partial class CustomMessageBox : Form
{
...
1
vote
1answer
49 views
IBindingList change notification
I am trying to create a program (simple grid - with specialized output) that displays data from an IBindingList data source. I can display the data just fine, but I also want to be able to let the ...
1
vote
2answers
80 views
How to create a comparable Image
I have a DataGridView which has been bound to a generic BindingList. I want to be able to apply sort and search on columns of type DataGridViewImageColumn. The basic idea is to store a name into the ...
1
vote
1answer
118 views
Simplest way to make SortableBindingList use a stable sort
There is an example of how to modify SortableBindingList to use a stable sort. However, there is an updated version of SortableBindingList. What is the best way to modify this new version to use a ...
1
vote
1answer
91 views
BindingList ListChanged event
I am subscribing to the ListChanged event in a binding list. When the list changed (item is add/removed), I will update an internal list. The internal list contains objects that are 1-1 corresponding ...
1
vote
0answers
57 views
C# / WPF - BindingList<T> containing and maintaining the contents of a HashSet<BindingList<T>>
I want a master BindingList<T> which contains a reference to all the items in child lists and
Does this already exist or should I create one? I guess it would be an ...
1
vote
2answers
90 views
Why am I getting a NullReferenceException when trying to subclass from an ObservableCollection or BindingList?
I'm using ObservableCollections as the ItemsSource for some of my bindings, and have run into a scenario where I would like to call OnCollectionChanged manually to notify that the list should be ...
1
vote
0answers
54 views
foreach gives startindex error
following code gives a "Value of '7' is not valid for 'indexStart'. 'indexStart' must be less than or equal to 3. Parameter name: indexStart" error!
void eventsource_EventLogCollectionChanged(object ...
1
vote
2answers
117 views
How to use a static utility method for property setters in a utility class
I'm trying to achieve two-way binding between a DataGridView and a BindingList that provides data for the DGV. Some columns do not yet reflect changes in the underlying list and I think it's because I ...
1
vote
1answer
220 views
BindingList with my class populating a ComboBox using a property of it?
I have a BindingList with my class where I would like to populate a ComboBox using a property of it so when my list changes the ComboBox would change as well.
public class UserAccess
{
public ...
1
vote
2answers
348 views
Deleting From DGV — Index [x] does not have a value
The Setup:
I have a two DataGridViews, each bound to a BindingList<> of custom business objects. These grids have a special row containing the mathematical totals of all rows in that grid -- this ...
1
vote
1answer
768 views
Sorting custom columns in a DataGridView bound to a BindingList
I have a DataGridView which is data-bound to a BindingList. My DataGridView also has a couple of custom columns that I have added. These are not data-bound, but rather are generated based on items in ...
1
vote
1answer
87 views
casting BindList<Classname> to BindingList<Interface>
I have an object (class A) that implements an interface I.
My object C has a BindingList listA
At one point I need to perform the following cast:
BindingList<I> funcName(){
...
return ...
1
vote
2answers
186 views
BindingList with int array updating a listbox?
I have a BindingList like the follow:
private BindingList<int[]> sortedNumbers = new BindingList<int[]>();
Each entry is a int[6], now I wanted to bind it to a listbox so it updates it ...
1
vote
0answers
306 views
DataGridView bound to BindingList not updating when list is modified
I have a class...
public class Command : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private string _Name;
public string Name
{
get { return _Name; }
...
1
vote
1answer
147 views
copy bindinglist to another one
public class MyBindingList : BindingList<int>
{
public MyBindingList()
{
}
private BindingList<int> temp;
public void ...
1
vote
3answers
503 views
how to convert array to BindingList
what is the easiest and fastest way to convert an array to BindingList?
1
vote
3answers
263 views
Should you return a BindingList from a business layer (or service layer, domain model, etc.)?
I need a BindingList in my UI to provide two-way databinding between my collection and a DataGridView. However, it doesn't seem correct to return a BindingList from your business layer (or domain ...
1
vote
1answer
377 views
C#: Pushing changes from DataGridView to BindingList back to database?
I'm using a BindingList to display a list of Person objects in a DataGridView in a Windows Forms application. Changes to the DataGridView change the underlying BindingList. I've got this part ...
1
vote
2answers
670 views
filter binding source or bindinglist with textbox_keypress
I use winforms and c#.
How can I filter Binding source or binding list. with a textbox text ?
I meam while I am typing in a textbox my grid is filtering with a %Like method not (=,equal)method.
...
1
vote
2answers
259 views
ListBox throwing ArgumentOutOfRangeException when adding to DataSource
I'm trying use a BindingList as a DataSource for a ListBox in C# WinForms, but whenever I try to add items to the BindingList, I get an ArgumentOutOfRangeException thrown. The following code ...
1
vote
0answers
614 views
Why doesn't BindingList(Of T) have AddRange Member?
I think the title pretty much captures my question, but a little bit of background follows:
When a form I have loads it adds a couple of thousand (30k odd) objects to a binding list. When my ...
1
vote
1answer
336 views
Update BindingList<> from a background Thread?
I was wondering how I would use the Dispatcher in WPF to safely update my BindingList collection from another thread?
I am also open for other solutions,
Many Thanks,
Kave