BoxKite.Notifications icon indicating copy to clipboard operation
BoxKite.Notifications copied to clipboard

A wrapper for creating Windows 8 notifications using POCOs instead of XML - adapted from a MSDN example.

Results 2 BoxKite.Notifications issues
Sort by recently updated
recently updated
newest added

A placeholder for when they make the preview bits available (around June 26)

From https://gist.github.com/xpaulbettsx/5632430 ``` var toast = ToastContentFactory.CreateToastText02(); toast.TextHeading.Text = "A Thing!"; toast.TextBodyWrap.Text = "DO IT"; toast.Lang = "en-US"; toast.BaseUri = "http://google.com"; toast.Duration = BoxKite.Notifications.ToastDuration.Long; toast.StrictValidation = false; ToastNotificationManager.CreateToastNotifier().Show(new ToastNotification(toast.GetXml())); ```...