2
I don’t know how to import a list to another form
, if anyone can help me. The code of the first form
is like this: Note that I want to Transport the ListaFornecedores
to the Form
FrmNovoProduto
. Like I said I don’t know if this is how you do it.
public partial class FrmCadastrarProduto : Form
{
List<Produtos> oRetorno = new List<Produtos>();
List<Fornecedores> ListaFornecedores = new List<Fornecedores>();
public FrmCadastrarProduto()
{
InitializeComponent();
}
private void novoProdutoToolStripMenuItem_Click(object sender, EventArgs e)
{
CarregaFornecedores();
FrmNovoProduto oFrmNovoProduto = new FrmNovoProduto(ListaFornecedores);
oFrmNovoProduto.ShowDialog();
}
}
The form that will receive the list is like this:
public partial class FrmNovoProduto : Form
{
private static List<Rodolfo.Fornecedores> Lista;
public FrmNovoProduto(Lista)
{
InitializeComponent();
}
public FrmNovoProduto()
{
InitializeComponent();
}
private void FrmNovoProduto_Load(object sender, EventArgs e)
{
}
}
How do I do that?