Try Documentalist, my app that offers fast, offline access to 190+ programmer API docs.
Info about System.Windows.Form.ListBox
Properties:
- int ItemHeight
- bool IntegralHeight
- bool DoubleBuffered
- DrawMode (.Normal, .OwnerDrawFixed, .OwnerDrawVariable)
- bool HorizontalScrollbar, when used in owner draw, set HorizontalExtent to max width
- bool MultiColumn
- bool HorizontalScrollbar
- ObjectCollection Items
- SelectionMode (.None, .One, .MultiSimple, .MultiExtended)
EventHandlers:
- MeasureItem - only called when DrawMode.OwnerDrawVariable
To add/remove shown items, use Items property, which is ObjectCollection:
- Add(object)
- AddRange(ObjectCollection)
- AddRange(object[])
- Insert(int index, object item)
- Remove(object value)
- RemoveAt(int index)
- Clear()
- int Count
Events
- MouseDown, MouseUp
- MouseEnter, MouseLeave
- MouseHover
- MouseWheel
- AutoSizeChanged, ClientSizeChanged, SizeChanged
- DragEnter, DragLeave, DragOver
Links: