Oliver Kubicki
Oliver Kubicki

Reputation: 7

Bottom to Top Listboxes

How would I load my Listbox from bottom to top? I haven't been able to find anything for c# about this.

I looked through the properties of Listbox but there isn't anything for item alignment.

Upvotes: 0

Views: 100

Answers (1)

Caius Jard
Caius Jard

Reputation: 74605

I use

listBox.Items.Insert(0, "hello world");

for logging where I want the most recent item at the top of the listbox

Upvotes: 1

Related Questions