How to Create a ShellToast(ToastPrompt) in Windows Phone 8 ?

Do you want to create a ShellToast from your Windows Phone 8 app ? . The Coding4fun toolkit provides some additional controls which can be used create a ShellToast in Windows Phone 8 app.

How to Create a ShellToast(ToastPrompt) in Windows Phone 8 ?

Below is a sample code snippet demonstrating how to achieve it using the ToastPrompt control from Coding4Fun.

var toast = new Coding4Fun.Toolkit.Controls.ToastPrompt
          {
            Title = "Abundantcode Message",
            TextOrientation = System.Windows.Controls.Orientation.Vertical,
            Message = "Welcome to Abundantcode.com"
          };
toast.Show();
image