private void button1_Click(object sender, EventArgs e)
{
GridViewRowInfo rowInfo = this.radGridView1.Rows.AddNew();
rowInfo.Cells[0].Value = "Z:\\";
rowInfo.Cells[1].Value = "Projects";
rowInfo.Cells[2].Value = "";
rowInfo.Cells[2].Value = 1000;
rowInfo = this.radGridView1.Rows.AddNew();
rowInfo.Cells["LocalFolder"].Value = "\\\\NAS_Home\\Data";
rowInfo.Cells["ODFolder"].Value = "Home Data";
rowInfo = this.radGridView1.Rows.AddNew();
rowInfo.Cells["LocalFolder"].Value = "C:\\Pictures";
rowInfo.Cells["ODFolder"].Value = "Pictures Net";
}
|