* Cancellation support for getting responses from the server. * Adding cancel button for account creation dialog initialization. * Prevent invalid outlook message types like contact, calendar event or todo item. * Remove debug launcher options.
16 lines
352 B
C#
16 lines
352 B
C#
namespace Wino.Dialogs
|
|
{
|
|
public sealed partial class AccountCreationDialog : BaseAccountCreationDialog
|
|
{
|
|
public AccountCreationDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void CancelClicked(object sender, Windows.UI.Xaml.RoutedEventArgs e)
|
|
{
|
|
Complete(true);
|
|
}
|
|
}
|
|
}
|