Hello! I made a form using the MaterialSkin library
In this library there is a component called ListView (which would be similar to the ListView of WinForms) that the first column is buggy. Look at this image:
Correct would be to get all three dots just like in the CPF-CNPJ column, however, the first column overlaps all the others when it has many characters. Does anyone know what the solution might be?
Edit 1: Preferably a form other than simply giving a substring in the characters of the first column !!
Edit 2: I'm filling in the table with the following code:
fornecedores = new Fornecedor().retornaItens(tbFiltro.Text,30);
lstFornecedores.Items.Clear();
foreach (Fornecedor fornecedor in fornecedores)
{
var item = new ListViewItem(new string[ {fornecedor.nome,fornecedor.cpfcnpj,fornecedor.tipoPessoa.ToString(),fornecedor.endereco});
lstFornecedores.Items.Add(item);
}