Mover código a sus namespaces correspondientes
This commit is contained in:
26
ServerExplorer/UI/FrmDatos.cs
Normal file
26
ServerExplorer/UI/FrmDatos.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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.UI
|
||||
{
|
||||
public partial class FrmDatos : Form
|
||||
{
|
||||
public FrmDatos(DataTable dt, String titulo)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
Text = titulo;
|
||||
dgvDatos.DataSource = dt;
|
||||
}
|
||||
|
||||
private void frmDatos_Load(object sender, EventArgs e) { }
|
||||
|
||||
private void dgvDatos_CellContentClick(object sender, DataGridViewCellEventArgs e) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user