hi,
using Gizmox i had the possibility to do so:
protected virtual void FillDataTable(DataTable dt)
{
BindingSource = new BindingSource { DataSource = dt };
lstEntity.DataSource = BindingSource;
}
i want that my list will hold a DataTable as DataSource, How can I do that?
thanks for your help
Orel.
thanks! it works!
Ho Orel,
Unlike WinForms ListView implementation, VWG ListView did support DataBinding. As Wisej is based on the WinForms implementation, it doesn’t support DataBinding.
MvvmFx includes BoundListView – a ListView control that implements DataBinding for WinForms and Wisej.
Please login first to submit.