using BindingSource in ListView

0
0

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.

  • You must to post comments
0
0

thanks! it works!

  • You must to post comments
0
0

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.

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.