programming-examples/c-sharp/Others/WrapPanel and Windows Controls.cs
2019-11-15 12:59:38 +01:00

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>