Files
myfriendsaround/main/Libs/GpsEmulator/GpsEmulator/MapControl/MapTile.xaml
T
2011-03-23 11:58:56 +02:00

12 lines
711 B
XML

<UserControl x:Class="GpsEmulator.MapControl.MapTile"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d">
<Grid Height="256" Width="256">
<TextBlock Name="tbDescription" HorizontalAlignment="Center" VerticalAlignment="Center" Text="Loading Image..." Foreground="Gray" FontSize="24" />
<Image Name="imgTileImage" Stretch="None" RenderOptions.EdgeMode="Aliased" />
</Grid>
</UserControl>