You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
604 B
C#

WrapPanel and Windows Controls
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Panel" Height="360" Width="500">
<WrapPanel Background="Red">
<Label Width="320" Height="36" FontSize="16">Information</Label>
<Label>1</Label>
<TextBox Width="240" Height="25"/>
<Label>2</Label>
<TextBox Name="txtColor" Width="200" Height="25"/>
<Label>3</Label>
<TextBox Width="200" Height="25"/>
<Button Name="btnOK" Width="80">OK</Button>
</WrapPanel>
</Window>