7

Is it possible to draw some strings onto a listview?

I overridden the OnPaint event but I don't see any change. I checked out some code on custom listview, but it seems like people are using p/invoke, etc. Why?

Isn't list as customizable as other winforms, like the Button control?

I am not gonna customize wildly, just paint some more after it's done the standard painting.

Joan Venge
  • 315,713
  • 212
  • 479
  • 689

3 Answers3

10

You can't just override the OnPaint() method. That method doesn't do anything in a ListView. Similarly, OwnerDrawn lets you custom draw each cell, but doesn't let you paint over the control as a whole.

Use an ObjectListView (an open source wrapper around .NET WinForms ListView) and use its Overlay feature. That lets you effortlessly do something like this:

text over a ListView

This was produced by this code:

this.olv1.OverlayText.Alignment = ContentAlignment.BottomRight;
this.olv1.OverlayText.Text = "Trial version";
this.olv1.OverlayText.BackColor = Color.White;
this.olv1.OverlayText.BorderWidth = 2.0f;
this.olv1.OverlayText.BorderColor = Color.RoyalBlue;
this.olv1.OverlayText.TextColor = Color.DarkBlue;
Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Grammarian
  • 6,774
  • 1
  • 18
  • 32
7
 class MyCustomlistView : ListView
    {
        public MyCustomlistView()
            : base()
        {
            SetStyle(ControlStyles.UserPaint, true);
        }
        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
            e.Graphics.DrawString("This is a custom string", new Font(FontFamily.GenericSerif, 10, FontStyle.Bold), Brushes.Black, new PointF(0, 50));
        }

    }
Andre Pena
  • 56,650
  • 48
  • 196
  • 243
1

Set the OwnerDraw property to true.

You can then handle the DrawItem, DrawSubItem, and DrawColumnHeader events to draw on specific elements of the ListView.

SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964