WrapPanel with VerticalAlignment : WrapPanel « Windows Presentation Foundation « C# / CSharp Tutorial






<Window x:Class="LayoutPanels.SimpleWrap"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="LayoutPanels" Height="142" Width="431"
    >
  <WrapPanel Margin="3">
    <Button VerticalAlignment="Top">Top Button</Button>
    <Button MinHeight="60">Tall Button 2</Button>
    <Button VerticalAlignment="Bottom">Bottom Button</Button>
    <Button>Stretch Button</Button>
    <Button VerticalAlignment="Center">Centered Button</Button>   
  </WrapPanel>

</Window>
WPF Wrap Panel With Vertical Alignment








24.58.WrapPanel
24.58.1.Simple WrapPanelSimple WrapPanel
24.58.2.FlowDirection of WrapPanelFlowDirection of WrapPanel
24.58.3.WrapPanel with BackgroundWrapPanel with Background
24.58.4.Vertical WrapPanel WindowVertical WrapPanel Window
24.58.5.Set item width for WrapPanelSet item width for WrapPanel
24.58.6.Set ItemWidth and ItemHeight for WrapPanelSet ItemWidth and ItemHeight for WrapPanel
24.58.7.WrapPanel and Windows ControlsWrapPanel and Windows Controls
24.58.8.WrapPanel with VerticalAlignmentWrapPanel with VerticalAlignment
24.58.9.Instantiate and use a WrapPanel element in code