您可以告訴您如何獲取WPF Grid中的選定列名稱或索引。如何獲取WPF Grid中的選定列名稱或索引
1
A
回答
0
這是我們可以得到一個特定的細胞
Object obj = GetCell(3).Content;
string cellContent = String.Empty;
if (obj != null)
{
if (obj is TextBox)
cellContent = ((TextBox)(obj)).Text;
else
cellContent = ((TextBlock)(obj)).Text;
}
private DataGridCell GetCell(int column)
{
DataGridRow rowContainer = GetRow();
if (rowContainer != null)
{
DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);
// Try to get the cell but it may possibly be virtualized.
DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
if (cell == null)
{
// Now try to bring into view and retreive the cell.
customDataGrid.UCdataGridView.ScrollIntoView(rowContainer, customDataGrid.UCdataGridView.Columns[column]);
cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
}
return cell;
}
return null;
}
0
1
相關問題
- 1. 獲取索引的名稱
- 2. 獲取選定的Datagrid行索引或列索引
- 3. 如何從sys.dm_tran_locks獲取索引名稱
- 4. 獲取選定列表框項目的名稱(WPF C#)?
- 5. 如何獲取選定collectionviewcell的名稱?
- 6. 如何從列表中獲取選定列名稱
- 7. 如何獲取芯片名稱或芯片索引?
- 8. 如何獲取特定名稱的行索引號?
- 9. javascript - 如何獲取對象名稱或關聯數組索引名稱?
- 10. 如何獲取或設置wpf色帶組合框的選定索引?
- 11. 如何獲取JCheckbox的選定索引?
- 12. 獲取選定列的索引(DataTables + ColVis)
- 13. 如何從下拉列表中獲取未選定的索引?
- 14. RethinkDB:獲取索引內的索引,而不是索引名稱
- 15. 獲取選定的行列值extjs grid
- 16. 如何從Syncfusion MVC Grid的選定行中獲取列值
- 17. 在特定表名中獲取索引名稱
- 18. 如何獲取WPF列表框實例中的listboxitem的索引?
- 19. 如何獲取WPF Datagrid的行索引?
- 20. 如何取出數據幀中的列索引名稱
- 21. 如何在Elasticsearch中過濾或查詢索引名稱列表?
- 22. 如何在wpf中獲取默認選定打印機的端口名稱
- 23. 如何獲取在wpf中綁定到datagrid列的屬性的名稱?
- 24. 從radgrid獲取選定的行索引和列索引
- 25. 如何獲取WPF網格中選定單元格的行索引
- 26. 如何通過名稱使用WebElement硒獲取表中列的索引C#
- 27. 如何從JavaScript中的Kendo Grid對象獲取隱藏的列字段名稱
- 28. 獲取radioGroup中選定RadioButton的索引
- 29. 獲取LongListSelector中的選定索引
- 30. 獲取GridView中選定行的索引
你的意思GridView控件或DataGrid的價值? – HCL
我的意思是基於WPF的GRID – Abhi