PushSettingsControl.xaml.cs 632 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Documents;
  8. using System.Windows.Input;
  9. using System.Windows.Media;
  10. using System.Windows.Media.Animation;
  11. using System.Windows.Shapes;
  12. using System.IO.IsolatedStorage;
  13. using System.Xml.Linq;
  14. namespace WindowsPhone.Recipes.Push.Client.Controls
  15. {
  16. public partial class PushSettingsControl : UserControl
  17. {
  18. public PushSettingsControl()
  19. {
  20. DataContext = PushContext.Current;
  21. InitializeComponent();
  22. }
  23. }
  24. }