WrapPanel with Label and TextBox : WrapPanel « 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.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » WrapPanelScreenshots 
WrapPanel with Label and TextBox
WrapPanel with Label and TextBox
     

<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="300" Width="300">
  <WrapPanel Background="LightSteelBlue">
    <Label Name="lblInstruction" Width="328" Height="27" FontSize="15">Information</Label>
    <Label Name="lblMake">Make</Label>
    <TextBox Name="txtMake" Width="193" Height="25"/>
    <Label Name="lblColor">Color</Label>
    <TextBox Name="txtColor" Width="193" Height="25"/>
    <Label Name="lblPetName">Name</Label>
    <TextBox Name="txtPetName" Width="193" Height="25"/>
    <Button Name="btnOK" Width="80">OK</Button>
  </WrapPanel>
</Window>

   
    
    
    
    
  
Related examples in the same category
1.WrapPanel with FlowDirectionWrapPanel with FlowDirection
2.Arrange UI Elements Into Automatically Wrapping Rows or ColumnsArrange UI Elements Into Automatically Wrapping Rows or Columns
3.Put rectangles to WrapPanelPut rectangles to WrapPanel
4.Instantiate and use a WrapPanel elementInstantiate and use a WrapPanel element
5.Wrap Buttons to WrapPanelWrap Buttons to WrapPanel
w_ww_.__j_a___v___a2___s___.c__o_m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.