Limpieza de codigo

This commit is contained in:
2013-10-14 20:20:23 +02:00
parent af72a4decb
commit b4eea3818f
22 changed files with 194 additions and 197 deletions

View File

@@ -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) { }
}
}