Fill DockPanel with Labels and Buttons : DockPanel « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » DockPanelScreenshots 
Fill DockPanel with Labels and Buttons
Fill DockPanel with Labels and Buttons
      

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Fun with Panels!" Height="186" Width="501">

  <DockPanel LastChildFill ="True">
    <Label DockPanel.Dock ="Top" Name="lblInstruction" FontSize="15">Enter</Label>
    <Label DockPanel.Dock ="Left" Name="lblMake">Make</Label>
    <Label DockPanel.Dock ="Right" Name="lblColor">Color</Label>
    <Label DockPanel.Dock ="Bottom" Name="lblPetName">Name</Label>
    <Button Name="btnOK">OK</Button>
  </DockPanel>
</Window>

   
    
    
    
    
    
  
Related examples in the same category
1.Using DockPanel.Dock to position elementsUsing DockPanel.Dock to position elements
2.Use DockPanel to layout a WindowUse DockPanel to layout a Window
3.Nested DockPanelNested DockPanel
4.Window with DockLayoutWindow with DockLayout
5.Dock UI Elements to the Edges of a FormDock UI Elements to the Edges of a Form
6.Put a StackPanel on the LeftPut a StackPanel on the Left
7.Set Dock position for DockPanel layoutSet Dock position for DockPanel layout
8.Differences of StackPanel and DockPanelDifferences of StackPanel and DockPanel
9.Insert to a Panel by indexInsert to a Panel by index
10.Get all children from a PanelGet all children from a Panel
11.Find the index number of a newly added element within a panel, using the IndexOf methodFind the index number of a newly added element within a panel, using the IndexOf method
12.Show the effect of each value of the Dock property by manipulating two Rectangle elements.Show the effect of each value of the Dock property by manipulating two Rectangle elements.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.