Hello,
I want to add a new text row in a grid with some text using the following piece of code:
grid.BeginInit();
grid.Clear();
grid.AllowCellNavigation = false;
grid.RowSelectorPane.Visible = false;
TextRow row = new TextRow(“New TextRow”);
grid.FixedHeaderRows.Add(row);
grid.EndInit();
The problem is that the grid remains empty and no row is shown. What’s wrong?
Many Thanks.
Imported from legacy forums. Posted by Javier (had 2352 views)