4
votes
4answers
101 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 hap …
1
vote
3answers
284 views
Binding to BindingList<T> - choose what to bind?
Say I have an business object called Sample and I have BindingList of Samples. A sample has 4 properties.
Can I select which properties are bound to DataGrid or there no option t …
0
votes
2answers
24 views
.NET DataBinding, Confirmation before removing items from the list
Hi, i have a BindingList as a datasource and a grid control,
if the user deletes a row in the grid, i want him to get a confirmation (a messagebox for example),
the grid control i …
3
votes
6answers
104 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 …
1
vote
2answers
170 views
Thread safety advice when using DataGridView and BindingList in C#
I'm writing a class for logging events. My LogClass is implemented as a singleton, and any class in the system can write a log entry. The entries are stored in a List and when a bu …
0
votes
2answers
35 views
XtraGrid doesn’t display properly newly added line
Hi Folks,
I'm using XtraGrid of DevExpress 2.9.5 to display a blotter of dynamic set of lines. The blotter is integrated into another application, this is why it has to be based o …
0
votes
4answers
209 views
Reverse sort a BindingList<T>
I have a custom class that inherits from BindingList(T) that I am binding to a DataGrid.
However, the DataGrid is being populated from the top down and I want it populated from t …
0
votes
0answers
33 views
Editing business objects in Winforms DataGridView
Is possible to edit properties of business object (one property, one column) binded as BindingList to Winforms DataGridView?
Or do I have to use DataSet or DataTable?
I'm not abl …
0
votes
1answer
51 views
some of my class<T>’s members don’t turn up on datagridview bound to BindingList<T>
Hi, I have a class
public class ANote{
public string NoteId = "";
public string Note = "";
public string NoteCollector = "";
public DateTime NoteCollectionDate = DateTime.MinValu …
0
votes
1answer
74 views
BindingList and column flexibility
Everyone raves about BindingList in place of DataTable.
How do you guys overcome the problem of column flexibility? For BindingList I need to define and implement T object. If an …
3
votes
1answer
142 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 …
0
votes
1answer
97 views
Getting the index of deleted item from bindinglist
Hi,
I am able to get the index of items added to the BindingList. When I try to get the index if the deleted item I get the error
Index was out of range. Must be non-negative and …
1
vote
3answers
122 views
Public fields/properties of a class derived from BindingList<T> wont serialize
I'm trying to serialize a class that derives from BindingList(Floor), where Floor is a simple class that only contains a property Floor.Height
Here's a simplified version of my cl …
1
vote
3answers
175 views
Solution to the lack of covariance with generics in c# 2.0 (BindingList)
It's a design question. I have a business object, and 5 business object types that are derived from it.
I also will have a class which has BindingList as a member. I will have 5 …
2
votes
3answers
2k views
DataGridView sort and e.g. BindingList<T> in .NET
Hi Folks
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 …
