我想動態地添加不同的圖像到c#窗體datagridview行標題。它應該像檢查任何單元格值,如果它> 10顯示一些圖像,否則顯示其他圖像。如何做到這一點?請幫助我...........如何添加不同的圖標/圖像到c#中的datagridview行標題?
1
A
回答
2
到GridView
添加OnRowDataBound事件處理程序在事件處理程序 - 檢查頭部和處理每列相應
protected virtual void OnRowDataBound(GridViewRowEventArgs e) {
if (e.Row.RowType == DataControlRowType.Header) {
// process your header here..
}
}
欲瞭解更多信息請點擊這裏:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridviewroweventargs.row.aspx
0
2
你可以將圖像添加到DataGridView.RowPostPaint事件中的DataGridView行標題中。
下面是在CodeProject上的文章,似乎描述的這個相當不錯的鏈接(我還沒有嘗試過對自己代碼):Row Header Cell Images in DataGridView
可以使用RowPostPaint事件提取要測試對值確定要顯示哪個圖標。通過使用該事件的RowIndex屬性與你感興趣的列的索引值做到這一點
像這樣的東西應該作爲一個起點:
private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) {
// As an example we'll check contents of column index 1 in our DGV.
string numberString = dataGridView1.Rows[e.RowIndex].Cells[1].Value as string;
if (numberString != null) {
int number;
if (Int32.TryParse(numberString, out number)) {
if (number > 10) {
// Display one icon.
} else {
// Display the other icon.
}
} else {
// Do something because the string that is in the cell cannot be converted to an int.
}
} else {
// Do something because the cell Value cannot be converted to a string.
}
}
+0
Thiks很多。這對我的程序有用..... thnx再次... – hmlasnk
相關問題
- 1. 如何在JFrame的標題欄中添加圖像圖標?
- 2. 將圖像添加到.net datagridview的標題
- 3. 我們如何添加drupal7主題的不同徽標(圖像)標題
- 4. 添加標題和圖標圖像QProgressDialog
- 5. UITableView爲圖像圖標添加標題
- 6. 如何添加不同的鏈接到標題中的兩個圖像
- 7. 將表中的圖像對齊並添加標題標題行
- 8. 如何將圖像和標題添加到表視圖的標題IOS
- 9. 將圖像圖標添加到UIPickerView行
- 10. 如何將相關標題添加到不同div中的隨機圖像?
- 11. flexslider圖像如何添加標題
- 12. 添加圖像標題
- 13. 添加選中標記圖像到選中的同一行UITableView
- 14. 如何在標題文本後的網格視圖標題中添加圖像
- 15. 如何將圖像和標籤添加到UINavigationBar作爲標題?
- 16. 如何添加圖像,而不是標題文本中的Android
- 17. 如何在c#中將圖標添加到圖標?
- 18. c#DataGridView每行添加圖像
- 19. 如何將圖像替代和標題標籤添加到wordpress圖像
- 20. Android:如何設置不同的佈局標題和標題欄圖標圖像
- 21. 添加圖像到表單標題
- 22. 將URL添加到Photoswipe圖像標題
- 23. 將圖像添加到Wordpress標題
- 24. 將標題和圖像添加到NSStatusItem
- 25. 將圖像添加到C#DataGridView
- 26. 如何將圖標添加到導航抽屜中的標題?
- 27. 如何將圖像添加到標籤?
- 28. 在UITableview的標題視圖中添加動態圖像到UIView
- 29. 添加圖像或圖標到primefaces選項卡標題
- 30. 如何將圖標(圖像,徽標..)添加到狀態欄
將圖像添加到headertemplate並在onrowdatabound事件中隱藏它或將其分配給一個url。 – anami