private void btnCreate_Click(object sender, EventArgs e) { NewProductClass NewP = new NewProductClass(); NewP.name = ProName.Text; NewP.disc = ProDis.Text; NewP.price = ProPrice.Value; ProductContainer con = new ProductContainer(NewP); }
public ProductContainer(NewProductClass NPro) { InitializeComponent(); this.NewPro = NPro; }