Search code examples
.netwpfflowlayoutpanelflowpanel

Where to find this FlowPanel?


I have found many sources referencing a WPF class called FlowPanel. There is even a MSDN entry about FlowLayoutPanel. But my Intelisense can't find it when I type in my XAML:

<Flow

I can't find it in the toolbar neither. What am I doing wrong?


Solution

  • FlowLayoutPanel is a WindowsForms control, so you will not find in in WPF. You can try the VirtualizingTilePanel, I think it has the functionality which you are looking for.

    Edit: Also, I forgot about the Bag of Tricks. There is a neat class called AnimatingTilePanel.