Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

An auto-resize C# Listbox (updated)

0.00/5 (No votes)
2 Aug 2004 3  
A listbox which will auto-resize its texts.

Sample image

Sample image

Introduction

This is generally an extended version of the auto-resize C# Listbox by Christian Tratz. He didn't have the time to post this version, so I wrote this very short article. The improvements are '\n' support, now and then words got to the right edge, the line (integer) is changed to string to allow custom values in the header. That's it, have fun!

Using the code

See Christian Tratz' article on this, nothing changed. However if you use the Item.Insert instead of Item.Add selected items will now move to the bottom (when something is inserted above, of course). See also the example provided above. In short:

// Create the Listbox..

listbox = new ListBox.MessageListBox();
listbox.Size = new Size( this.ClientSize.Width, this.ClientSize.Height);
listbox.Dock = DockStyle.Top;

// .. and add it to the controls.

this.Controls.Add( listbox);

Then, you can start adding messages to the end of the listbox:

listbox.Items.Add(
 new ListBox.ParseMessageEventArgs(
  ListBox.ParseMessageType.Info,
  "Info1",
  "Some information.. there should be enough text in this area
   to see that the resizing works! The text is wrapped in between
   words as much as possible, since this control has no knowledge
   of words. However, when not possible the words are split."));

Or, insert them at an index:

listbox.Items.Insert(
 1, 
 new ListBox.ParseMessageEventArgs(
  ListBox.ParseMessageType.None,
  "Some more info",
  "Text can also be inserted at any index. Previously selected
   text will e.g. move to the bottom when something is inserted
   above."));

After that, redraw the control:

listbox.Invalidate();

History

  • Version 1.2 - Optimized the drawing method: only the visible items are drawn and measuring only takes place after a resize.
  • Version 1.1 - First Version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here