Commit inicial

This commit is contained in:
2013-10-14 01:03:45 +02:00
parent 6095221df5
commit af72a4decb
62 changed files with 1805 additions and 368 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ServerExplorer
{
public partial class frmDatos : Form
{
public frmDatos(DataTable dt,String titulo)
{
InitializeComponent();
this.Text = titulo;
dgvDatos.DataSource = dt;
}
private void frmDatos_Load(object sender, EventArgs e)
{
}
private void dgvDatos_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
}
}