Is there a way in C#, to dynamically build somehow a stack of items? Just like a list, but without that scrolling and selecting.
I am searching a way to stack items from a list via binding.
And now I want to do this with a stack.
Is there a way in C#, to dynamically build somehow a stack of items? Just like a list, but without that scrolling and selecting.
I am searching a way to stack items from a list via binding.
And now I want to do this with a stack.
Yeah. It's called ItemsControl and it has no ScrollViewing + selecting. YOu can do it like:
<ItemsControl ItemssSource="{Binding items}">
</ItemsControl>
you probably need to change ItemsControl.ItemTemplate and ItemsControl.ItemPanelsTemplate