DataTable table = new DataTable(); table.Columns.Add(new DataColumn( "Text", typeof( string ) ) ); table.Columns.Add(new DataColumn( "Number", typeof( double ) ) ); table.Rows.Add( new object[] { "Value 1", 1 } ); table.Rows.Add( new object[] { "Value 2", 2 } ); table.Rows.Add( new object[] { "Value 3", 3 } ); dataGridView1.DataSource = table;Output:
Microsoft AX 2012, X++, C#, SQL server, SSRS, Java, JavaFX, Oracle, PL/SQL, Delphi - codes examples, step-by-step tutorials, experiences.
Tuesday, September 11, 2018
C# - How add values to DataGridView (with source in DataTable)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment