33 lines
646 B
C#
33 lines
646 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.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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|