zhaw-dnet2/Tasks/Lab6/UWPClient/MainPage.xaml

28 lines
1 KiB
XML

<Page
x:Class="UWPClient.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:UWPClient"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" Height="250" Width="400">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button VerticalAlignment="Center"
Content="Load"
Grid.Column="0"
Margin="10" Click="Button_Click" />
<TextBox x:Name="textBox" Grid.Column="1"
Margin="10"
Text="TextBox"
TextWrapping="Wrap"
VerticalAlignment="Stretch"
AcceptsReturn="True"/>
</Grid>
</Page>