I’ve currently got two lists I’m working with. One filled with items and the other one is empty. When the user double-clicks an item in the filled list it’s supposed to add that item to the empty/second list, but instead of adding it to the top of that list I want the newly added item at the bottom. So the items should be added from the bottom up.
I’m working with a datagridview, but am willing to use listview/listbox as long as it gets the job done.
I’ve currently got two lists I’m working with. One filled with items and the
Share
I added two list boxes to a windows form. listBox1 and listBox2
I added Seven Items to the first list box {One,Two,Three…}
I added the double click event handler where I
The new Item added to the bottom of the list, which is what it sounds like you want. I know the same thing works with a DataGridView.
Do you want them to be added physically to the bottom of the box leaving whitespace at the top until it is filled? Is that what you are trying to do?
Sorry this isn’t really an answer, I guess I don’t have enough rep to reply as a comment.
EDIT:
ok I think I have your answer now
Add a list box with your items, it doesn’t have to be a list box your Datagridview would work fine.
Try using a FlowControlPanel and change alignment to bottom up, sounds easy, well it is.
Add labels to it, like this
brining the label to the front puts the new one at the bottom.