带颜色的listbox控件

王朝other·作者佚名  2006-01-31
窄屏简体版  字體: |||超大  

Private Sub filllistboxwithcolors()

Me.ListBox1.DrawMode = DrawMode.OwnerDrawFixed

Me.ListBox1.ItemHeight = 24

'避免闪烁

Me.ListBox1.BeginUpdate()

ListBox1.Items.Clear()

Dim pi As Reflection.PropertyInfo

For Each pi In GetType(Color).GetProperties(Reflection.BindingFlags.Public Or Reflection.BindingFlags.Static)

Me.ListBox1.Items.Add(pi.Name)

Next

ListBox1.EndUpdate()

End Sub

Private Sub ListBox1_DrawItem(ByVal sender As Object, ByVal e As System.Windows.Forms.DrawItemEventArgs) Handles ListBox1.DrawItem

Dim rect As Rectangle = e.Bounds '每一项的边框

If e.State And DrawItemState.Selected Then

e.Graphics.FillRectangle(SystemBrushes.Window, rect)

End If

Dim colorname As String = ListBox1.Items(e.Index)

Dim b As New SolidBrush(Color.FromName(colorname))

rect.Inflate(-16, -2)

e.Graphics.FillRectangle(b, rect)

e.Graphics.DrawRectangle(Pens.Black, rect)

Dim b2 As

Brush

If CInt(b.Color.R) + CInt(b.Color.G) + CInt(b.Color.B) > 128 * 3 Then

b2 = Brushes.Black

Else

b2 = Brushes.White

End If

e.Graphics.DrawString(colorname, Me.ListBox1.Font, b2, rect.X, rect.Y)

End Sub

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航