Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Edit start page
Browse files Browse the repository at this point in the history
edit title.
add textfield, button.
for #3
  • Loading branch information
takkyuuplayer committed Dec 9, 2013
1 parent db4757e commit bcec539
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Merry Xmas/MainPage.xaml
Expand Up @@ -43,8 +43,16 @@
AutomationProperties.Name="Back"
AutomationProperties.AutomationId="BackButton"
AutomationProperties.ItemType="Navigation Button"/>
<TextBlock x:Name="pageTitle" Text="{StaticResource AppName}" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
<TextBlock x:Name="pageTitle" Text="Merry X'mas" Style="{StaticResource HeaderTextBlockStyle}" Grid.Column="1"
IsHitTestVisible="false" TextWrapping="NoWrap" VerticalAlignment="Bottom" Margin="0,0,30,40"/>
</Grid>
<StackPanel Grid.Row="1" Margin="120,30,0,0">
<TextBlock Text="What's your name?"/>
<StackPanel Orientation="Horizontal" Margin="0,20,0,20">
<TextBox x:Name="nameInput" Width="300" HorizontalAlignment="Left"/>
<Button Content="Say &quot;Merry X'mas!!&quot;"/>
</StackPanel>
<TextBlock x:Name="greetingOutput"/>
</StackPanel>
</Grid>
</Page>

0 comments on commit bcec539

Please sign in to comment.