Vertical WrapPanel Window : WrapPanel « Windows Presentation Foundation « C# / C Sharp






Vertical WrapPanel Window

Vertical WrapPanel Window
     
<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="VerticalWrapPanelWindow" Height="300" Width="300">
    <WrapPanel Orientation="Vertical">
        <Button Width="30">A</Button>
        <Button Width="30">B</Button>
        <Button Width="30">C</Button>
        <Button Width="30">D</Button>
        <Button Width="30">E</Button>
        <Button Width="30">F</Button>
        <Button Width="30">G</Button>
        <Button Width="30">H</Button>
        <Button Width="30">I</Button>
        <Button Width="30">J</Button>
        <Button Width="30">K</Button>
        <Button Width="30">L</Button>
        <Button Width="30">M</Button>
        <Button Width="30">N</Button>
        <Button Width="30">O</Button>
        <Button Width="30">P</Button>
    </WrapPanel>
</Window>

   
    
    
    
    
  








Related examples in the same category

1.Simple WrapPanelSimple WrapPanel
2.FlowDirection of WrapPanelFlowDirection of WrapPanel
3.WrapPanel with BackgroundWrapPanel with Background
4.Set item width for WrapPanelSet item width for WrapPanel
5.Set ItemWidth and ItemHeight for WrapPanelSet ItemWidth and ItemHeight for WrapPanel
6.WrapPanel and Windows ControlsWrapPanel and Windows Controls
7.WrapPanel with VerticalAlignmentWrapPanel with VerticalAlignment