Hello, I'm a beginner in C # I'm having a question, I've already tried the forum and found the solution that did not work for me.
Problem: I can not increase the ListBox column.
COD:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Trabalhodoprof.daniel2
{
public partial class Form1 : Form
{
public string recebo;
public Form1()
{
InitializeComponent();
}
#region Botão cadastrar
private void btnCadastrar_Click(object sender, EventArgs e)
{
ClassProdutos produto = new ClassProdutos();
classValidacao objValidacao = new classValidacao();
if(txtValor.Text == "")
{
txtValor.Text = "0";
}
if (txtQuantidade.Text == "")
{
txtQuantidade.Text = "0";
}
if (txtEstoque.Text == "")
{
txtEstoque.Text = "0";
}
produto.nome = txtNome.Text;
produto.valor = Convert.ToDouble(txtValor.Text);
produto.quantidade = Convert.ToInt32(txtQuantidade.Text);
produto.estoque = Convert.ToInt32(txtEstoque.Text);
produto.status = cbbStatus.Text;
MessageBox.Show(objValidacao.Validador(produto.valor));
if(produto.valor > 0) {
if (!string.IsNullOrWhiteSpace(txtNome.Text))
{
lstCadastro.Items.Add(produto.nome);
lstCadastro.Items.Add(Convert.ToString(produto.valor));
lstCadastro.Items.Add(Convert.ToString(produto.quantidade));
lstCadastro.Items.Add(Convert.ToString(produto.estoque));
lstCadastro.Items.Add(produto.status);
}
else
{
MessageBox.Show("Preencha os campos", "Atenção", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
}
}
txtNome.Clear();
txtValor.Clear();
txtQuantidade.Clear();
txtEstoque.Clear();
txtEstoque.Clear();
txtNome.Focus();
#endregion
#region Botão Sair
lstCadastro.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
lstCadastro.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize);
}
private void btnSair_Click(object sender, EventArgs e)
{
if(MessageBox.Show("Deseja sair da aplicação?", "Sair",MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{
Application.Exit();
}
}
#endregion
private void txtValor_TextChanged(object sender, EventArgs e)
{
}
private void txtValor_Leave(object sender, EventArgs e)
{
bool sair = true;
if (string.IsNullOrWhiteSpace(txtValor.Text) && sair == true)
{
MessageBox.Show("Preenchimento de campo obrigatório ");
txtValor.Focus();
sair = false;
}
}
private void txtValor_KeyPress(object sender, KeyPressEventArgs e)
{
if ((Char.IsLetter(e.KeyChar)) || (Char.IsWhiteSpace(e.KeyChar)))
e.Handled = true;
}
private void txtQuantidade_KeyPress(object sender, KeyPressEventArgs e)
{
if ((Char.IsLetter(e.KeyChar)) || (Char.IsWhiteSpace(e.KeyChar)))
e.Handled = true;
}
private void txtEstoque_KeyPress(object sender, KeyPressEventArgs e)
{
if ((Char.IsLetter(e.KeyChar)) || (Char.IsWhiteSpace(e.KeyChar)))
e.Handled = true;
}
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}