多彩世界 实现C# Listbox自绘

开发 后端
想要实现漂亮的C# Listbox控件吗?看此文章就对了,本文教你如何把Listbox控件变漂漂。

使用控件的DrawMode属性来实现控件的自绘,首先将C# Listbox的DrawMode设置为OwnerDrawVariable,然后实现DrawItem ,MeasuerItem方法。

编写如下代码:

  1. private void listBox1_DrawItem(object sender, DrawItemEventArgs e)  
  2.       {  
  3.           e.DrawBackground();  
  4.           Rectangle r = new Rectangle(0, 0, lbCustomDraw.Width, 100);  
  5.           bool selected = ((e.State & DrawItemState.Selected) == DrawItemState.Selected);  
  6.           LinearGradientBrush lgb = null;  
  7.           if (!selected)  
  8.           {  
  9.               lgb = new LinearGradientBrush(r, Color.Red, Color.Yellow, LinearGradientMode.Horizontal);  
  10.           }  
  11.           else 
  12.           {  
  13.               lgb = new LinearGradientBrush(r, Color.Cyan, Color.White, LinearGradientMode.Horizontal);  
  14.           }  
  15.           e.Graphics.FillRectangle(lgb, e.Bounds);  
  16.           e.Graphics.DrawRectangle(SystemPens.WindowText, e.Bounds);  
  17.           Rectangle r2 = e.Bounds;  
  18.           string displayText = (string)lbCustomDraw.Items[e.Index];  
  19.           SizeF size = e.Graphics.MeasureString(displayText, this.Font);  
  20.           r2.Y = (int)(r2.Height / 2) - (int)(size.Height / 2) + e.Bounds.Y;  
  21.           r2.X = 2;  
  22.           e.Graphics.DrawString(displayText, this.Font, Brushes.Black, r2);  
  23.           e.DrawFocusRectangle();  
  24.       }  
  25.       private void listBox1_MeasureItem(object sender, MeasureItemEventArgs e)  
  26.       {  
  27.           string displayText = (string)lbCustomDraw.Items[e.Index];  
  28.           SizeF size = e.Graphics.MeasureString(displayText, this.Font);  
  29.           size.Height += 10;  
  30.           e.ItemHeight = (int)size.Height;  
  31.       }  

最终效果:

多彩世界 实现C# Listbox自绘
多彩世界 实现C# Listbox自绘

以上就是C#  Listbox的自绘方法,很漂亮吧。

【编辑推荐】

  1. C#委托基础:谈委托和接口
  2. 简单实现C# CheckBox单选的相关功能
  3. C# ServiceController类剖析
  4. C# HttpWebRequest提交数据方式浅析
  5. C#计算素数序列浅谈
责任编辑:阡陌 来源: 网络转载
相关推荐

2009-09-10 12:00:09

C# listbox

2009-09-08 15:12:07

C# ListBox

2009-08-12 15:50:40

C# ListBox

2009-08-19 11:21:02

C# ListBox控

2009-08-14 14:19:50

Enhanced LiC#构建

2009-09-08 15:39:00

2009-09-08 16:01:58

C# ListBox

2009-09-08 14:43:41

C# listbox

2009-09-08 17:37:54

C# listbox控

2009-09-08 16:10:03

C# ListBox

2009-09-08 16:22:27

c# listBox

2009-09-08 14:54:40

C# listBox控

2010-03-04 10:34:04

Android操作系统

2010-02-05 16:28:07

Android

2022-12-29 10:05:38

AIGC人工智能技术

2009-09-08 15:50:44

c# listbox

2009-08-31 15:55:17

C#实现Strateg

2009-08-19 17:00:07

C#实现PrintPa

2009-08-25 17:55:52

C#实现Strateg

2009-08-20 14:22:17

C#实现 Contro
点赞
收藏

51CTO技术栈公众号