Step 3 : The MainPage.xaml file is as in the following code:
Code :
<Page
x:Class="App7.MainPage"
IsTabStop="false"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App7"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Grid x:Name="LayoutRoot" Background="Yellow"
Height="450" Width="550">
<RichTextBlock HorizontalAlignment="Left"
Margin="10,12,0,0" Name="contentBox" VerticalAlignment="Top"
Height="530" Width="390" >
<Paragraph FontFamily="Arial" FontSize="16"
TextAlignment="Justify" Foreground="Black">
This photograph describe about
<Run Text=" Windows Azure " FontStyle="Normal"
FontWeight="ExtraBold" Foreground="Blue" />
is an open cloud platform that enables you to quickly build,
deploy and manage applications across a global network
of Microsoft-managed datacenters.
<Run Text="Introduction to Windows Azure: the cloud operating system "
Foreground="blue" FontWeight="ExtraBold"/>
<LineBreak/>
<InlineUIContainer >
<Image Height="143" HorizontalAlignment="Left"
Margin="144,82,0,0" Name="images"
Stretch="Uniform" VerticalAlignment="Top"
Width="196" Source="Windows-Azure.jpg" />
</InlineUIContainer>
<LineBreak/>
<LineBreak/> |
</Paragraph>
</RichTextBlock>
</Grid>
</Grid>
</Page>