0

how i can Insert new item into WPF listbox before the old items

like old text then i add

new text 

old text

instead

old text 

new text
Tarek Saied
  • 6,482
  • 20
  • 67
  • 111

1 Answers1

1
ListBox.Items.Insert(0, "Message");

something like this?

Clinton Ward
  • 2,441
  • 1
  • 22
  • 26