Windows Scripting
  Home arrow Windows Scripting arrow Page 4 - 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  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
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 - DockPanel


    (Page 4 of 5 )

    Next, we'll look at the DockPanel control. DockPanel is a bit odd in that its child controls are arranged relative to one another. That is, controls may be placed to the top, bottom, left, and right of other controls. This relative arrangement is governed by the DockPanel.Dock attribute. For example, if one control has its DockPanel.Dock attribute set to Top in the XAML, then it will be positioned above the control that follows it. Two buttons in this situation would look something like this:



    And the corresponding XAML would look like this:


    <DockPanel>

     <Button DockPanel.Dock="Top" Content="Button 1" />

     <Button Content="Button 2" />

    </DockPanel>


    Note that a DockPanel will use up all of the available space. In the above picture, the DockPanel is confined to a Page with a width of 200 pixels and a height of 100 pixels. Both buttons are stretched horizontally to take up the entire available width, and the second button is stretched vertically to take up the rest of the available height. You can, however, get rid of the default stretch behavior in the same way as with StackPanel:


    <DockPanel>

     <Button DockPanel.Dock="Top" Content="Button 1"

     HorizontalAlignment="Center" />

     <Button Content="Button 2" HorizontalAlignment="Center"

     VerticalAlignment="Center" />

    </DockPanel>


    More controls can be added to the application to produce something more complex:



    <DockPanel>

     <Button DockPanel.Dock="Top" Content="Button 1" />

     <Button DockPanel.Dock="Left" Content="Button 2" />

     <Button DockPanel.Dock="Bottom" Content="Button 3" />

     <Button Content="Button 4" />

    </DockPanel>

    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

    - More Windows Scripting Workarounds from Nilpo
    - Overloading Methods and More in VBScript
    - Improving MFC for Windows Vista
    - Regular Expressions in VBScript
    - Working with Dates in WMI
    - Completing Calendars with VBScript Date Func...
    - Building Calendars with VBScript Date Functi...
    - Working With Dates and Times in VBScript
    - Designing WCF DataContract Classes Using the...
    - Understanding Dates and Times in VBScript
    - 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...





    © 2003-2010 by Developer Shed. All rights reserved. DS Cluster 11 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek