Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dock Panel Dock right and left

Tags:

wpf

I know a only little about dock panel, following is the code is used:

<DockPanel LastChildFill="True" >
    <StackPanel Orientation="Horizontal" DockPanel.Dock="Top" VerticalAlignment="Center" Margin="10" >
        <StackPanel Orientation="Horizontal" DockPanel.Dock="Left" VerticalAlignment="Center" >
            <TextBlock Height="24" Name="Welcome" Text="Welcome" FontSize="14" />
        </StackPanel>
        <StackPanel Orientation="Horizontal" DockPanel.Dock="Right" VerticalAlignment="Center" >
            <TextBlock Height="24" Name="Welcomee" Text="Welcomee" FontSize="14" />
        </StackPanel>
    </StackPanel>
</DockPanel>

The result is like this:

WelcomeWelcomee

However, the code must result in something like this:

Welcome                                                              Welcomee

So could you please tell me where I misunderstood the concept.

like image 683
surpavan Avatar asked Jul 01 '11 16:07

surpavan


1 Answers

Your first StackPanel should not contain the other two stack panels. It contains the other two. DockPanel.Dock="left" only applies to the immediate children of the DockPanel.

   <DockPanel>
        <StackPanel Orientation="Horizontal" DockPanel.Dock="Top" VerticalAlignment="Center" Margin="10" >Top
        </StackPanel>
        <StackPanel Orientation="Horizontal" DockPanel.Dock="Left" VerticalAlignment="Center" >
                <TextBlock Height="24" Name="Welcome" Text="Welcome" FontSize="14" />
        </StackPanel>
        <StackPanel Orientation="Horizontal" DockPanel.Dock="Right" VerticalAlignment="Center" >
               <TextBlock Height="24" Name="Welcomee" Text="Welcomee" FontSize="14" />
        </StackPanel>
    </DockPanel>
like image 90
agent-j Avatar answered Nov 02 '22 20:11

agent-j