Introduction
Welcome to the CSCode xp web site, where you will find many tips and tricks to find the easiest way to code.
Using the Code
Below will be a sample of what the code on this site will look like:
<pre>using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
// Important: Set child TabControl on the same hierarchy than parent datagridview
masterGridView1.SetChildTabcontrol();
}
private void Form1_Load(object sender, EventArgs e)
{
masterGridView1.DataSource = Persona.getPersonas();
}
}
}
Conclusion
This site along with the code is license under The Code Project Open License