コード例 #1
0
ファイル: CategoriaForm.cs プロジェクト: ogaston/PuntoVenta
 public static CategoriaForm GetInstancia()
 {
     if (_instancia == null)
     {
         _instancia = new CategoriaForm();
     }
     return(_instancia);
 }
コード例 #2
0
ファイル: ArticuloForm.cs プロジェクト: ogaston/PuntoVenta
        private void btnCategoria_Click(object sender, EventArgs e)
        {
            CategoriaForm abril = new CategoriaForm();

            abril.ShowDialog();
        }