mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-22 09:01:43 +03:00
12 lines
711 B
XML
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>
|