I’m using the Windows.UI.Popups.MessageDialog to show a message at the start of my application.
Is there any way of changing the appearance of the default metro MessageDialog?
If the message is too long, can I add text scrolling to the default metro MessageDialog?
var dialog =
new Windows.UI.Popups.MessageDialog(WinJS.Resources.getString('start_message').value,
WinJS.Resources.getString('start_message-title').value);
dialog.commands.append(new
Windows.UI.Popups.UICommand(WinJS.Resources.getString('start').value, commandInvokedHandler));
return dialog.showAsync();
Thanks!
Ale.