Dynamic Auto updating (to UI, Grid) binding list in C# Winform?

1.6k views Asked by At

I'm not even sure if I'm doing this correctly. But basically I have a list of objects that are built out of a class/interface. From there, I am binding the list to a DataGridView that is on a Windows Form (C#)

Here the list is a Sync list which will auto update the UI, in this case DataGridView.

Every thing works fine now, but now i would like to have the List should have an dynamic object, that is the object will have by default two static property (ID, Name), and at run time user will select remaining properties. These should be bind to the data grid. Any update on the list should be auto reflected in the grid.

I am aware that, we can use dynamic objects, but i would like to know , how to approach for solution,

datagridview.DataSource = myData;  // myData is AutoUpdateList<IPersonInfo> 

Now IPersonInfo is the type of object, need to add dynamic properties for this type at runtime.

public class AutoUpdateList<T> : BindingList<T>
{
    private ISynchronizeInvoke _SyncObject;
    private Action<ListChangedEventArgs> _FireEventAction;

    public AutoUpdateList()
        : this(null)
    {
    }

    public AutoUpdateList(ISynchronizeInvoke syncObject)
    {
        _SyncObject = syncObject;
        _FireEventAction = FireEvent;
    }

    protected override void OnListChanged(ListChangedEventArgs args)
    {
        try
        {
            if (_SyncObject == null)
            {
                FireEvent(args);
            }
            else
            {
                _SyncObject.Invoke(_FireEventAction, new object[] { args });
            }
        }
        catch (Exception)
        {
            // TODO: Log Here
        }
    }

    private void FireEvent(ListChangedEventArgs args)
    { 
        base.OnListChanged(args);             
    }
}

Could you help out on this?

1

There are 1 answers

3
heq On

I guess the best way for you is 'to simulate' the properties. I guess the best way would be the ITypedList implementing, the great example is here.

Once I faced similar issue. For my case I've taken this approach. This just might be helpful for you.

Also, there is a way (it's not about anything 'dynamic') to have a base class with fulls set of properties you gonna use. But it won't work if you don't have all properties before the runtime.