Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MaterialListView in mode View.Tail #292

Open
Daniliva opened this issue Oct 2, 2024 · 0 comments
Open

MaterialListView in mode View.Tail #292

Daniliva opened this issue Oct 2, 2024 · 0 comments

Comments

@Daniliva
Copy link

Daniliva commented Oct 2, 2024

Hello
Please tell me how to use MaterialListView in regimeView.Tile?
Right now when I use MaterialListView, I have a empty card
Thanks!
image
image
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);
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@Daniliva and others