コード例 #1
0
        private void característicasToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormGestionCaracteristicas fgc = Program.container
                                             .GetInstance <FormGestionCaracteristicas>();

            fgc.ShowDialog();
        }
コード例 #2
0
        private async void btnCaracteristicas_Click(object sender, EventArgs e)
        {
            FormGestionCaracteristicas fgc = Program.container
                                             .GetInstance <FormGestionCaracteristicas>();

            fgc.ShowDialog();

            if (fgc.Cerrado)
            {
                await Listar();
            }
        }