Click here to Skip to main content
15,905,607 members

Comments by HT Vinh (Top 2 by date)

HT Vinh 22-Jan-19 4:24am View    
Yes, i am using WPF.
HT Vinh 22-Jan-19 4:23am View    
MachineList is List, Code:

public class ViewAViewModel : BindableBase
{
public IList<machine> MachineList { get; }

public ViewAViewModel()
{
MachineList = new ObservableCollection<machine>(new MachineRepo().GetAll());

}
}