Add content to the Page1.xaml file, e.g.:
<Page
x:Class="WpfBrowserApp.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Page1">
<Grid>
<Label
Height="28"
HorizontalAlignment="Left"
Margin="25,26,0,0"
Name="label1"
VerticalAlignment="Top"
Width="120">
Just a text
</Label>
<Button
Margin="25,100,0,0"
Name="button1"
Height="23"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Width="75"
Click="button1_Click">
Button
</Button>
<TextBox
Height="23"
HorizontalAlignment="Left"
Margin="25,60,0,0"
Name="textBox1"
VerticalAlignment="Top"
Width="120"
/>
</Grid>
</Page>