Thank you for your response. I am not sure if that helped me. As I beleive I should have done this right in order to have an image as a background for the Grid. I have Added a new folder to my project in the "Solution" and in that folder I have put an image called: backGround.png. The code for that look like this.
<Grid.Background>
<ImageBrush ImageSource="images/backGround.png"/>
</Grid.Background>
But now when I F5 the page I get an error like below and no image was shown. I would be very happy to know what I could miss out.
Line: 453
Error: Sys.InvalidOperationException: ImageError error #4001 in control 'Xaml1': AG_E_NETWORK_ERROR
<
UserControl x:Class="myTestPage1.Page"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height
="678"
Background="#FFFFFFFF" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns
:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignWidth="968">
<Grid x:Name="LayoutRoot" >
<Grid.Background>
<ImageBrush ImageSource="images/backGround.png"/> </Grid.Background>
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid Grid.Row="0" Margin="7">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="200" />
<ColumnDefinition Width="50" />
</Grid.ColumnDefinitions>
<Border Grid.Column="0" CornerRadius="10" Background="#FFDEDEDE" Margin="0,0,5,0">
<TextBlock Text="DIGG SEARCH" Foreground="#FF14517B" Margin="10,3,0,0" />
</Border>
<TextBox Grid.Column="1" FontSize="14" Text="Topic..." />
<Button Grid.Column="2" Content="Search" />
</Grid>
<TextBlock Grid.Row="1" Margin="10" Foreground="White">
Todo: Stories will display here...
</TextBlock>
<RadioButton HorizontalAlignment="Left" Margin="10,37,0,0" VerticalAlignment="Top" Grid.Row="1" Content="RadioButton" d:LayoutOverrides="HorizontalAlignment, Height"/></Grid>
</
UserControl>