Windows Scripting
  Home arrow Windows Scripting arrow Page 2 - WPF Control Layout
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WINDOWS SCRIPTING

WPF Control Layout
By: Peyton McCullough
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2008-08-13

    Table of Contents:
  • WPF Control Layout
  • StackPanel
  • WrapPanel
  • DockPanel
  • Grid

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    WPF Control Layout - StackPanel


    (Page 2 of 5 )

    Perhaps the simplest layout involves placing controls in a vertical or horizontal line. This can also be seen as “stacking” controls—putting one on top of another, or beside another as it's added to the page. This type of layout is possible through a StackPanel. Controls placed within a StackPanel tag will display stacked in the order that you create them. The StackPanel features an Orientation property that can be set to either Vertical or Horizontal. A vertical orientation can produce something like this:



    And a horizontal orientation can produce something like this:



    The two examples above use almost the exact same code. The only difference is that the Orientation properties are set to different values.

    The first example can be reproduced with the following XAML:


    <StackPanel Orientation="Vertical">

     <Button Content="Button 1" />

     <Button Content="Button 2" />

     <Button Content="Button 3" />

     <Button Content="Button 4" />

    </StackPanel>


    Above, we explicitly set the Orientation property. However, when stacking things vertically, this actually isn't necessary, since the default value is Vertical. We could have achieved the same results by leaving it out altogether:


    <StackPanel>

     ...

    </StackPanel>


    The second example can be reproduced simply by changing the value of Orientation:


    <StackPanel Orientation="Horizontal">

     <Button Content="Button 1" />

     <Button Content="Button 2" />

     <Button Content="Button 3" />

     <Button Content="Button 4" />

    </StackPanel>


    It's also possible to put one StackPanel within another, if necessary. Using this approach, something like this could be achieved:



    <StackPanel Orientation="Vertical">

     <Button Content="Button 1" />

     <StackPanel Orientation="Horizontal">

     <Button Content="Button 2" />

     <Button Content="Button 3" />

     <Button Content="Button 4" />

     </StackPanel>

    </StackPanel>


    However, for more advanced layouts requiring distinct rows and columns, the Grid layout element, which will be covered later, is a much better choice.

    The default value for HorizontalAlignment and VeritcalAlignment for controls within a StackPanel is Stretch. This can produce some odd results (such as the example with a horizontal orientation). So, in some situations, it may be best to change this to a more natural look:



    <StackPanel Orientation="Horizontal">

     <Button Content="Button 1" VerticalAlignment="Center" />

     <Button Content="Button 2" VerticalAlignment="Center" />

     <Button Content="Button 3" VerticalAlignment="Center" />

     <Button Content="Button 4" VerticalAlignment="Center" />

    </StackPanel>


    A better way to do this would be to create a style within the StackPanel:
    <StackPanel.Resources>
    <Style TargetType="{x:Type Button}">
    <Setter Property="VerticalAlignment" Value="Center" />
    </Style>
    </StackPanel.Resources>

    More Windows Scripting Articles
    More By Peyton McCullough


       · Hello, all,As was said in the article, the layout of controls plays a very large...
     

    WINDOWS SCRIPTING ARTICLES

    - Working With Arrays in VBScript
    - Compressed Folders in WSH
    - Using .NET Interops in VBScript
    - Nilpo`s Scripting Secrets, Vol I
    - Database operations using Silverlight 2.0 WC...
    - Modifying XML Files in WSH
    - Reading XML Files in WSH
    - Visual Basic 2005 XML Programming Using XML ...
    - Creating an XML Document in WSH
    - Introducing Two-Way Data Binding using Silve...
    - Silverlight 2.0 Application Development with...
    - Burning Multisession CDs with IMAPI2 in WSH
    - Creating a Silverlight 2.0 Application that ...
    - Burning CDs with the IMAPI2 Control
    - Burning CDs in Windows XP with WSH

     
    Best Practices for Windows Vista Migration Presentation
    Dell and Microsoft recently held a series of face-to-face seminars entitled, &qu....

     
    Creating a Culture for Code Reuse
    If you oversee development teams you know that like it or not proprietary and ex....

     
    Keys to Web Application Acceleration: Advances in Delivery Systems
    Accelerate Web apps by up to 5x. Ensure significantly faster access to the Web a....

     
    Optimizing Application Monitoring
    Tired of finding out from your customers that you're offline? This white paper e....

     
    Solaris to Solaris Migration -- Migrating applications from Sun SPARC to Dell PowerEdge R900
    This comprehensive Migration Guide reviews the approach that Principled Technolo....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
    Stay green...Green IT