What is the WPF equivalent for the FlowLayoutPanel?

后端 未结 2 1459
暗喜
暗喜 2021-01-03 18:05

I am working on a WPF application (a one note clone which is called \"note your life\") where you can dynamically assign Tags to an entry (just as in virtually any web 2.0 a

相关标签:
2条回答
  • 2021-01-03 18:32

    Maybe Wrap panel will help.

    <WrapPanel Orientation="Horizontal">
        <Button Margin="3">Button 1</Button>
        <Button Margin="3">Button 2</Button>
        <Button Margin="3">Button 3</Button>
        <Button Margin="3">Button 4</Button>
        <Button Margin="3">Button 5</Button>
    </WrapPanel>
    
    0 讨论(0)
  • 2021-01-03 18:43

    The WrapPanel has similar behaviour to the old WinForms FlowLayoutPanel.

    0 讨论(0)
提交回复
热议问题