Skip to content

Instantly share code, notes, and snippets.

@wtuts
Created January 9, 2016 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wtuts/d0c11c14b894d93d0b3d to your computer and use it in GitHub Desktop.
Save wtuts/d0c11c14b894d93d0b3d to your computer and use it in GitHub Desktop.
private async void Create_Database_Click(object sender, RoutedEventArgs e)
{
var status = await Database.DatabaseHelper.Createdatabase();
var content = status ? "Database Created" : "Already Exists";
var mm = new MessageDialog(content);
await mm.ShowAsync();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment