PushSettingsView.xaml 830 B

12345678910111213141516
  1. <UserControl x:Class="WindowsPhone.Recipes.Push.Client.Views.PushSettingsView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:my="clr-namespace:WindowsPhone.Recipes.Push.Client.Controls"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. mc:Ignorable="d"
  8. FontFamily="{StaticResource PhoneFontFamilyNormal}"
  9. FontSize="{StaticResource PhoneFontSizeNormal}"
  10. Foreground="{StaticResource PhoneForegroundBrush}"
  11. d:DesignHeight="628" d:DesignWidth="480">
  12. <Grid x:Name="LayoutRoot" Background="{StaticResource PhoneChromeBrush}">
  13. <my:PushSettingsControl x:Name="settingsControl" />
  14. </Grid>
  15. </UserControl>