コード例 #1
0
 private void listarProdutosToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (telaListarProdutos == null)
     {
         telaListarProdutos = new Listar_Produtos();
         telaListarProdutos.Show();
         telaListarProdutos.MdiParent = this;
         telaListarProdutos.Disposed += new EventHandler(telaListarProdutos_Disposed);
     }
 }
コード例 #2
0
 void telaListarProdutos_Disposed(object sender, EventArgs e)
 {
     telaListarProdutos = null;
 }