<UserControl x:Class="LocSilverlight.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:dataInput="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.Input"
mc:Ignorable="d"
d:DesignHeight="220" d:DesignWidth="243" >
<Grid x:Name="LayoutRoot" Background="White"
Height="181" Width="183">
<dataInput:Label Name="labelMessage"
Height="50"
Width="100"
Margin="12,12,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="{Binding Path=Resource.Message,
Source={StaticResource
LocResources}}"/>
<Button Name="button1"
Height="23"
Width="75"
Margin="37,76,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="{Binding Path=Resource.buttonExit,
Source={StaticResource
LocResources}}"/>
</Grid>
</UserControl>