30 lines
670 B
C#
30 lines
670 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace IBRCAD
|
|
{
|
|
public partial class frm_cadprodutos : Form
|
|
{
|
|
public frm_cadprodutos()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void pb_exit_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
frm_main_menu frm_Main_Menu = new frm_main_menu();
|
|
frm_Main_Menu.openWinFormPanel(new frm_dashboard_home());
|
|
this.Close();
|
|
//this.Hide();
|
|
}
|
|
}
|
|
}
|