I am using devexpress with WinForms application. I created a GridView
and i added a column. I want to insert a new row to this GridView
. But when displayed there is nothing that has been shown.
Thats what i have tried:
public Form1()
{
InitializeComponent();
loadData();
}
public void loadData()
{
this.gridView1.AddNewRow();
this.gridView1.SetFocusedRowCellValue(this.gridView1.Columns[0], "test");
}