Form

GPALDataGridView

GPALDataGridView renders a fully editable grid similar to a spreadsheet. Populate it from a data source with FillInFrom. Users can add rows, edit cells, and delete entries. The full grid contents (including user edits) are captured in the form data output when the form closes. This is the primary control for interactive data review and correction workflows.

Examples

GPAL Fluent: High-level fluent C# API

//Unlike GPALListView (selection only), GPALDataGridView supports cell editing. Changes the user makes are reflected in the grid data that FillInFrom produces when the form is processed.

// Editable data grid in a form

GPAL.Form

.WithTitle("Review and Edit")

.WithFormControl((DataGridView)GPAL.DataGridView

.WithText("Records"))

.FillInFrom(importedData)

.ShowDialog();

💬 Ask GPAL