WinForm自定义ListBox显示样式

WinForm自定义ListBox显示样式,多列分不同颜色显示,效果如下图:

首先向winForm窗口拖入一个ListBox控件,命名为lstConsole,同时将DrawMode设置为:OwnerDrawFixed,这里一定要注意否则我们接下来的工作都不会起作用。

然后我们来自定义ListBoxItem,代码如下:

    public class ColoredListBoxItem
    {
        /// <summary>
        /// creates a new ColoredListBoxItem
        /// </summary>
        /// <param name="prefix">the prefix which will be used</param>
        /// <param name="text">the real message</param>
        /// <param name="color">the color of both</param>
        public ColoredListBoxItem(DateTime time, string prefix, string text, Color color)
        {
            Time = time;
            Text = text;
            Prefix = prefix;
            TextColor = color;
        }

        /// <summary>
        /// the real message
        /// </summary>
        public DateTime Time { get; set; }

        /// <summary>
        /// the prefix of the text
        /// </summary>
        public string Prefix { get; set; }

        /// <summary>
        /// the real message
        /// </summary>
        public string Text { get; set; }

        /// <summary>
        /// the color of the message
        /// </summary>
        public Color TextColor { get; set; }
    }

    public enum LogType
    {
        /// <summary>
        /// OpenVPN changed the internal state.l
        /// </summary>
        Created,

        /// <summary>
        /// The management interface wants to say something.
        /// </summary>
        Changed,

        /// <summary>
        /// A "normal" message is logged by OpenVPN via Management Interface.
        /// </summary>
        Deleted,

        /// <summary>
        /// A debug message is sent. This is primary for internal usage.
        /// </summary>
        Renamed
    }

接下来,切换到事件,向lstConsole添加DrawItem事件:lstConsole_DrawItem,代码如下:

private void lstConsole_DrawItem(object sender, DrawItemEventArgs e)
        {
            // just in case the list is empty...
            if (e.Index == -1)
                return;

            // prefixes are drawed bold
            Font prefixFont = new Font(e.Font, FontStyle.Bold);

            ColoredListBoxItem li = (ColoredListBoxItem)((ListBox)sender).Items[e.Index];

            Brush br = new SolidBrush(li.TextColor);

            // calculate the width of the longest time
            int timeWidth = (int)e.Graphics.MeasureString(" " + new DateTime(2222, 12, 22, 22, 22, 22, 222, CultureInfo.CurrentCulture.Calendar, DateTimeKind.Local).ToString(), prefixFont, e.Bounds.Width, StringFormat.GenericDefault).Width;
            // calculate the width of the longest prefix
            int prefixWidth = (int)e.Graphics.MeasureString(" [Management]", prefixFont, e.Bounds.Width, StringFormat.GenericDefault).Width;

            // prepare the prefix
            string prefix = "";
            switch (li.Prefix)
            {
                case "Created":
                    prefix = "[创建文件] ";
                    break;
                case "Changed":
                    prefix = "[修改文件] ";
                    break;
                case "Deleted":
                    prefix = "[删除文件] ";
                    break;
                case "Renamed":
                    prefix = "[重命名文件] ";
                    break;
                default:
                    break;
            }

            e.DrawBackground();
            Rectangle newBounds = new Rectangle(e.Bounds.Location, e.Bounds.Size);

            // draw the time
            e.Graphics.DrawString(li.Time.ToString(), prefixFont, br, newBounds, StringFormat.GenericDefault);
            // calculate the new rectangle
            newBounds.X += timeWidth;
            newBounds.Width -= timeWidth;

            // draw the prefix
            e.Graphics.DrawString(prefix, prefixFont, br, newBounds, StringFormat.GenericDefault);
            // calculate the new rectangle
            newBounds.X += prefixWidth;
            newBounds.Width -= prefixWidth;

            // draw the text
            e.Graphics.DrawString(
                li.Text, e.Font, br, newBounds.X, newBounds.Y,
                StringFormat.GenericDefault);

            // draw the focus
            e.DrawFocusRectangle();
        }

最后一步,向ListBox添加Item显示的数据:

        public void AddLog(LogType prefix, string text)
        {
            if (lstConsole.InvokeRequired)
            {
                try
                {
                    //lstConsole.BeginInvoke(new UtilsHelper.Action<LogType, string>(AddLog), prefix, text);
                }
                catch (ObjectDisposedException)
                {
                }
                return;
            }

            Color rowColor;
            switch (prefix)
            {
                case LogType.Created:
                    rowColor = Color.Green;
                    break;

                case LogType.Changed:
                    rowColor = Color.DarkBlue;
                    break;

                case LogType.Deleted:
                    rowColor = Color.Brown;
                    break;

                default: // e.g. State
                    rowColor = Color.Black;
                    break;
            }

            lstConsole.BeginUpdate();
            if (lstConsole.Items.Count == 2048)
                lstConsole.Items.RemoveAt(0);

            lstConsole.Items.Add(new ColoredListBoxItem(DateTime.Now, prefix.ToString(), text, rowColor));

            int h = lstConsole.ClientSize.Height - lstConsole.Margin.Vertical;
            int i = lstConsole.Items.Count - 1;
            while (h >= 0 && i > 0)
            {
                int nh = lstConsole.GetItemHeight(i);

                if (nh > h)
                    break;
                else
                {
                    h -= nh;
                    i--;
                }
            }

            lstConsole.TopIndex = i;
            lstConsole.EndUpdate();
        }

展示效果软件下载地址:下载Windows文件监视器

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-14 08:34:37

WinForm自定义ListBox显示样式的相关文章

自定义绘制android EditText的背景,定义EditText文字的显示样式

EditText可以通过layer-list来绘制背景: <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="rectangle" //框为矩形 > &l

Siteserver-stl:searchOutput(搜索结果)自定义显示样式

stl:searchOutput 自定义显示样式 自定义搜索提交表单需要在<stl:searchOutput>中嵌入显示搜索结果的标签,必须包含的标签 有<stl:pageContents>和<stl:pageitems>及<stl:pageItem>元素,分 别用于显示搜索结果分页列表和搜索结果翻页项. 注意: <stl:searchOutput>内必须包含一个<stl:pageContents>元素,用于显示搜索结果内容列表,详情

自定义RatingBar的显示样式

RatingBar是我们在做项目时常用到的一个控件View,用来表示评价的指数.是五角星样式的,但自带的样式有时候在我们项目中显示不协调,我们就要自定义RatingBar的显示样式. 先还是在布局页面中写上控件: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android&quo

自定义通知Notification:自己定义通知Notification下拉后的显示样式

注意:以下有些方法需要在build.gradle里修改minSdkVersion 21才能使用 只需在构建普通Notification的构建器builder上添加对bigContentView属性设置为RemoteView(自定义的通知样式),如需要对通知展开视图RemoteView里的UI控件设置监听,需要通过设置广播和RemoteView的setOnClickPendingIntent()方法配合使用 Notification notification; NotificationManage

WPF中关于ListBox的样式定制

可以自定义ListItem的显示样式,在其中嵌入具体需要呈现的内容 <ListBox Name="antennaListBox" Height="200" Width="149" Margin="0,5,0,0"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock Text="{Bindin

Android中自定义下拉样式Spinner

Android中自定义下拉样式Spinner 本文继续介绍android自定义控件系列,自定义Spinner控件的使用. 实现思路 1.定义下拉控件布局(ListView及子控件布局) 2.自定义SpinerPopWindow类 3.定义填充数据的Adapter 效果图 一.定义控件布局 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http:/

jQuery 自定义网页滚动条样式插件 mCustomScrollbar 的介绍和使用方法

如果你构建一个很有特色和创意的网页,那么肯定希望定义网页中的滚动条样式,这方面的 jQuery 插件比较不错的,有两个:jScrollPane 和 mCustomScrollbar. 关于 jScrollPane,大家见过的可能比较多,但是这个插件太过于古老而且功能不强大,效果在几年前非常不错,但是放在现在就不好说了.所以我选择了后者:mCustomScrollbar.下图是两者官方示例的简单对比: 本文就是介绍如何使用 mCustomScrollbar 这个插件,大部分的内容是翻译自 mCus

Sharepoint2013搜索学习笔记之自定义结果显示模板(九)

搜索结果通过套用定义好的显示模板来展示结果,显示模板由js和html组成,我们可以通过修改显示模板,然后将修改好的显示模板跟搜索结果绑定起来,来修改搜索结果的显示效果,例子如下图: 修改前 修改后 第一步,确定显示需要修改的显示模板,打开ie,摁f12,定位到搜索结果列表项找到需要修改的搜索项模板 第二步,从搜索中心进入网站设置页面 第三步,点击web设计器库的母版页和页面布局 第四步,进入母版页样式库的 Display Templates/search目录,该目录就是存放搜索结果显示模板的地方

css Cursor:url()自定义鼠标指针样式为图片

css自定义鼠标指针样式为图片Cursor:url()的使用,今天在项目中,要用到自定义鼠标样式,格式: css:{cursor:url('绝对路径的图片(格式:cur,ico)'),-moz-zoom-out;}//FF下面 css:{cursor:url('绝对路径'),auto;}//IE,FF,chrome浏览器都可以 前面url是自定义鼠标格式,图像的绝对路径地址,后面的参数是css标准的cursor样式,(IE下面可以不需要) 图标的格式根据不同的浏览器来分:IE支持cur,ani,