资源简介

devexpress表格控件gridcontrol设置隔行变色、焦点行颜色、设置(改变)显示值、固定列不移动(附源码)

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace demo006
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender EventArgs e)
        {
            DataTable dt = new DataTable();
            for (int i = 1; i < 5; i++)
            {
                dt.Columns.Add(“A“ + i);
            }
            dt.Columns.Add(“A5“ typeof(DateTime));
            for (int i = 0; i < 20; i++)
            {
                int sex = 1;
                if (i % 2 == 0)
                    sex = 0;
                dt.Rows.Add(“固定列00“ + i “测试列00“ + i sex 2100 * i DateTime.Now.AddDays(-i));
            }
            gridControl1.DataSource = dt;
        }

        /// 
        /// 改变显示值
        /// 

        private void gridView1_CustomColumnDisplayText(object sender DevExpress.XtraGrid.Views.base.CustomColumnDisplayTextEventArgs e)
        {
            if (e.Column.FieldName == “A3“)
            {
                if (e.Value.ToString() == “1“)
                    e.DisplayText = “男“;
                else
                    e.DisplayText = “女“;
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        189  2015-06-30 22:30  demo006\demo006\App.config

     文件      12800  2015-06-30 22:30  demo006\demo006\bin\Debug\demo006.exe

     文件        189  2015-06-30 22:30  demo006\demo006\bin\Debug\demo006.exe.config

     文件      24064  2015-06-30 22:30  demo006\demo006\bin\Debug\demo006.pdb

     文件      24224  2015-06-30 22:31  demo006\demo006\bin\Debug\demo006.vshost.exe

     文件        189  2015-06-30 22:30  demo006\demo006\bin\Debug\demo006.vshost.exe.config

     文件        490  2013-06-18 20:28  demo006\demo006\bin\Debug\demo006.vshost.exe.manifest

     文件       4824  2015-06-30 21:55  demo006\demo006\demo006.csproj

     文件       1472  2015-06-30 22:30  demo006\demo006\Form1.cs

     文件       7647  2015-06-30 22:30  demo006\demo006\Form1.Designer.cs

     文件       5817  2015-06-30 22:30  demo006\demo006\Form1.resx

     文件        564  2015-06-30 22:31  demo006\demo006\obj\Debug\demo006.csproj.FileListAbsolute.txt

     文件        977  2015-06-30 22:30  demo006\demo006\obj\Debug\demo006.csproj.GenerateResource.Cache

     文件     115956  2015-06-30 21:55  demo006\demo006\obj\Debug\demo006.csprojResolveAssemblyReference.cache

     文件      12800  2015-06-30 22:30  demo006\demo006\obj\Debug\demo006.exe

     文件        410  2015-06-30 22:30  demo006\demo006\obj\Debug\demo006.exe.licenses

     文件        180  2015-06-30 22:30  demo006\demo006\obj\Debug\demo006.Form1.resources

     文件      24064  2015-06-30 22:30  demo006\demo006\obj\Debug\demo006.pdb

     文件        180  2015-06-30 21:55  demo006\demo006\obj\Debug\demo006.Properties.Resources.resources

     文件     115188  2015-06-30 21:47  demo006\demo006\obj\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       7629  2015-06-30 21:47  demo006\demo006\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件          0  2015-06-30 21:40  demo006\demo006\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

     文件          0  2015-06-30 21:40  demo006\demo006\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

     文件          0  2015-06-30 21:40  demo006\demo006\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

     文件        519  2015-06-30 21:40  demo006\demo006\Program.cs

     文件       1338  2015-06-30 21:40  demo006\demo006\Properties\AssemblyInfo.cs

     文件        252  2015-06-30 22:30  demo006\demo006\Properties\licenses.licx

     文件       2866  2015-06-30 21:40  demo006\demo006\Properties\Resources.Designer.cs

     文件       5612  2015-06-30 21:40  demo006\demo006\Properties\Resources.resx

     文件       1094  2015-06-30 21:40  demo006\demo006\Properties\Settings.Designer.cs

............此处省略14个文件信息

评论

共有 条评论