博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
include a image in devexpress datagrid
阅读量:5877 次
发布时间:2019-06-19

本文共 2267 字,大约阅读时间需要 7 分钟。

  • Add an ImageCollection to yout form and add some icons 16x16 to it.
  • Add a column to the Grid for the icons.
  • Set the column's fieldName to image (whatever you like).
  • Set the column's UnboundType to Object.
  • Add a repositoryItemPictureEdit to the column's columnEdit.

All the above can be done in the designer. Then do the following

privatevoid gridView1_CustomUnboundColumnData(object sender,DevExpress.XtraGrid.Views.Base.CustomColumnDataEventArgs e){
if(e.Column== colImage1 && e.IsGetData){
string someValueFromDatabase =(string)gridView1.GetRowCellValue(e.RowHandle, colOne);if(someValueFromDatabase =="a"){
//Set an icon with index 0 e.Value= imageCollection1.Images(0);}else{
//Set an icon with index 1 e.Value= imageCollection1.Images(1);}}}

The key here is handling the and the repositoryItemPictureEdit.

 

***

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using DevExpress.XtraEditors.Repository;namespace WindowsApplication1{
public partial class Form1 : Form {
private DataTable CreateTable(int RowCount) {
Image[] images = new Image[] {
WindowsApplication1.Properties.Resources.about, WindowsApplication1.Properties.Resources.add, WindowsApplication1.Properties.Resources.apple, WindowsApplication1.Properties.Resources.arrow_down, WindowsApplication1.Properties.Resources.arrow_left}; DataTable tbl = new DataTable(); tbl.Columns.Add("Name", typeof(string)); tbl.Columns.Add("ID", typeof(int)); tbl.Columns.Add("Number", typeof(int)); tbl.Columns.Add("Date", typeof(DateTime)); tbl.Columns.Add("Image", typeof(Image)); for (int i = 0; i < RowCount; i++) tbl.Rows.Add(new object[] {
String.Format("Name{0}", i), i, 3 - i, DateTime.Now.AddDays(i), images[i % images.Length] }); return tbl; } public Form1() {
InitializeComponent(); gridControl1.DataSource = CreateTable(20); gridView1.Columns["Image"].ColumnEdit = new RepositoryItemPictureEdit(); } }}

转载地址:http://sczix.baihongyu.com/

你可能感兴趣的文章
手动升级 Confluence - 规划你的升级
查看>>
汽车常识全面介绍 - 悬挂系统
查看>>
电子政务方向:We7.Cloud政府云门户
查看>>
虚拟机Centos7连接Internet
查看>>
ansible 基本操作(初试)
查看>>
更改tomcat的根目录路径
查看>>
51nod 1292 字符串中的最大值V2(后缀自动机)
查看>>
加快ALTER TABLE 操作速度
查看>>
学习笔记之软考数据库系统工程师教程(第一版)
查看>>
基本网络概念
查看>>
将 ASP.NET Core 2.0 项目升级至 ASP.NET Core 2.1 RC 1
查看>>
js提交图片转换为base64
查看>>
学习CodeIgniter框架之旅(二)继承自定义类
查看>>
Y2161 Hibernate第三次考试 2016年8月18日 试卷分析
查看>>
Angular CLI 使用教程指南参考
查看>>
PHP 程序员的技术成长规划
查看>>
用于守护进程的出错处理函数
查看>>
AppCan可以视为Rexsee的存活版
查看>>
【转】SQL SERVER 2005 数据库状态为“可疑”的解决方法
查看>>
事件、委托、委托方法的总结(使用EventHandler<>)
查看>>