Limpieza de codigo
This commit is contained in:
@@ -9,24 +9,18 @@ using System.Windows.Forms;
|
||||
|
||||
namespace ServerExplorer
|
||||
{
|
||||
public partial class frmDatos : Form
|
||||
public partial class FrmDatos : Form
|
||||
{
|
||||
public frmDatos(DataTable dt,String titulo)
|
||||
public FrmDatos(DataTable dt, String titulo)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.Text = titulo;
|
||||
Text = titulo;
|
||||
dgvDatos.DataSource = dt;
|
||||
}
|
||||
|
||||
private void frmDatos_Load(object sender, EventArgs e)
|
||||
{
|
||||
private void frmDatos_Load(object sender, EventArgs e) { }
|
||||
|
||||
}
|
||||
|
||||
private void dgvDatos_CellContentClick(object sender, DataGridViewCellEventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
private void dgvDatos_CellContentClick(object sender, DataGridViewCellEventArgs e) { }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user