DeckView.xaml 797 B

12345678910111213141516171819
  1. <localView:UserControlBase x:Class="VocabManager.View.DeckView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:VocabManager"
  7. xmlns:localView="clr-namespace:VocabManager.View"
  8. mc:Ignorable="d"
  9. FontFamily="{StaticResource PhoneFontFamilyNormal}"
  10. FontSize="{StaticResource PhoneFontSizeNormal}"
  11. Foreground="{StaticResource PhoneForegroundBrush}"
  12. d:DesignHeight="800" d:DesignWidth="480">
  13. <Grid x:Name="LayoutRoot" >
  14. </Grid>
  15. </localView:UserControlBase >