mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-28 23:01:53 +03:00
00f97e41d6
http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/01/14/windows-push-notification-server-side-helper-library.aspx http://create.msdn.com/en-us/education/catalog/article/pnhelp-wp7
27 lines
658 B
C#
27 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Animation;
|
|
using System.Windows.Shapes;
|
|
using System.IO.IsolatedStorage;
|
|
using System.Xml.Linq;
|
|
|
|
namespace WindowsPhone.Recipes.Push.Client.Controls
|
|
{
|
|
public partial class PushSettingsControl : UserControl
|
|
{
|
|
public PushSettingsControl()
|
|
{
|
|
DataContext = PushContext.Current;
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|