this kind of messagebox are not existing in windows store apps. you have MessageDialog class which can use
Public Async Sub ShowDialog()
Dim md As MessageDialog = New MessageDialog("my message")
Await md.ShowAsync()
End Sub
Microsoft Certified Solutions Developer - Windows Store Apps Using C#