我在表單中添加了Devexpress Grid控件,我想手動在行中添加值,但是當我按下Enter鍵後在單元格中輸入值時,我在單元格中看不到任何內容。vb.net devexpress datagridview在行中添加值
0
A
回答
1
GridControl不維護內部數據源,應該綁定到數據源。如果您不想爲GridControl提供數據源,則應該處理CustomUnboundColumnData event以提供單元格的值。您也可以嘗試使用UnboundSource data component。
0
參考:Add Unbound Data to a Data-Aware Control (XtraGrid, XtraPivotGrid)
在大多數情況下的數據感知的DevExpress .NET控件包含結合 列/顯示來自綁定的數據源的數據字段。在Grid Control和PivotGrid控件中,可以添加未綁定的 列/字段,它可以顯示任意數據。未綁定的列是 未綁定到數據源中的任何字段。如果您要在不當前存在準備使用的源數據綁定,使用UnboundSource組件,你可以通過指定formula (string expression)用於 評估值或處理事件
提供 這些字段的數據Brendon已經建議。
相關問題
- 1. 在Vb.net添加記錄中的DataGridView行
- 2. 中的datagridview添加在vb.net
- 3. 將行添加到VB.NET中的DataGridView中
- 4. 在VB.Net的datagridview中添加工具欄
- 5. 添加信息到datagridview(VB.NET)
- 6. VB.net添加和從DataGridView
- 7. 在datagridview c中添加值#
- 8. 從vb.net中的另一個datagridview中獲取值給DatagridView添加計算值
- 9. C#在DataGridView中添加行
- 10. VB.net datagridview到圖表控件devexpress
- 11. VB.net - 向datagridview添加一行返回InvalidArgument =值'8797'對'rowIndex'無效
- 12. 如何在devexpress GridControl中添加行,就像我們在正常的datagridview中添加行一樣。 (WinForms C#)
- 13. 將值添加到DevExpress TreeList的一行
- 14. datagridview添加行
- 15. 在GridControl中添加行Devexpress onClick
- 16. 如何在GridView中添加一行Devexpress
- 17. 在VB.net中添加行
- 18. Devexpress repositoryItemlookupedit添加新行
- 19. 將行添加到DevExpress GridView
- 20. 添加行到datagridview
- 21. 向DataGridView添加行
- 22. 添加新行datagridview使用默認值
- 23. C#Winform DataGridView添加的新行值
- 24. DevExpress GridView | DataGridView
- 25. 如何在DataGridView中的現有項目中添加數量 - vb.net
- 26. 動態添加行到dataGridView
- 27. 基於numericupdown在DataGridView中添加行
- 28. 在DataGridView中添加新列並在運行時設置新值
- 29. vb.net在imagegumn中插入datagridview中的行
- 30. 添加在datagridview的
什麼是這個網格控件的數據源,以及如何在數據源中添加行值,以便在將它們添加到數據源時反射回來? –
我想通過手動添加值 – Emrah