You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
Please tell me how to use MaterialListView in regimeView.Tile?
Right now when I use MaterialListView, I have a empty card
Thanks!
listBoxRepairTypes.Items.Clear();
List repairTypes = _repairTypeRepo.GetAllRepairTypes();
foreach (var type in repairTypes)
{
ListViewItem item = new ListViewItem(type.RepairTypeID.ToString());
item.SubItems.Add(type.Name);
item.SubItems.Add(type.Duration.ToString());
item.SubItems.Add(type.Cost.ToString("C"));
item.SubItems.Add(type.Notes);
listBoxRepairTypes.Items.Add(item);
}
The text was updated successfully, but these errors were encountered:
Hello
Please tell me how to use MaterialListView in regimeView.Tile?
Right now when I use MaterialListView, I have a empty card
Thanks!
listBoxRepairTypes.Items.Clear();
List repairTypes = _repairTypeRepo.GetAllRepairTypes();
foreach (var type in repairTypes)
{
ListViewItem item = new ListViewItem(type.RepairTypeID.ToString());
item.SubItems.Add(type.Name);
item.SubItems.Add(type.Duration.ToString());
item.SubItems.Add(type.Cost.ToString("C"));
item.SubItems.Add(type.Notes);
listBoxRepairTypes.Items.Add(item);
}
The text was updated successfully, but these errors were encountered: