Initial commit.
This commit is contained in:
212
Wino.Mail/Views/Account/AccountDetailsPage.xaml
Normal file
212
Wino.Mail/Views/Account/AccountDetailsPage.xaml
Normal file
File diff suppressed because one or more lines are too long
30
Wino.Mail/Views/Account/AccountDetailsPage.xaml.cs
Normal file
30
Wino.Mail/Views/Account/AccountDetailsPage.xaml.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using Windows.UI.Xaml.Controls;
|
||||
using Wino.Core.Domain.Models.Folders;
|
||||
using Wino.Views.Abstract;
|
||||
|
||||
namespace Wino.Views
|
||||
{
|
||||
public sealed partial class AccountDetailsPage : AccountDetailsPageAbstract
|
||||
{
|
||||
public AccountDetailsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private async void SyncFolderToggled(object sender, Windows.UI.Xaml.RoutedEventArgs e)
|
||||
{
|
||||
if (sender is CheckBox checkBox && checkBox.Tag is IMailItemFolder folder)
|
||||
{
|
||||
await ViewModel.FolderSyncToggledAsync(folder, checkBox.IsChecked.GetValueOrDefault());
|
||||
}
|
||||
}
|
||||
|
||||
private async void UnreadBadgeCheckboxToggled(object sender, Windows.UI.Xaml.RoutedEventArgs e)
|
||||
{
|
||||
if (sender is CheckBox checkBox && checkBox.Tag is IMailItemFolder folder)
|
||||
{
|
||||
await ViewModel.FolderShowUnreadToggled(folder, checkBox.IsChecked.GetValueOrDefault());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
262
Wino.Mail/Views/Account/AccountManagementPage.xaml
Normal file
262
Wino.Mail/Views/Account/AccountManagementPage.xaml
Normal file
File diff suppressed because one or more lines are too long
16
Wino.Mail/Views/Account/AccountManagementPage.xaml.cs
Normal file
16
Wino.Mail/Views/Account/AccountManagementPage.xaml.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using Windows.UI.Xaml.Navigation;
|
||||
using Wino.Views.Abstract;
|
||||
|
||||
namespace Wino.Views
|
||||
{
|
||||
public sealed partial class AccountManagementPage : AccountManagementPageAbstract
|
||||
{
|
||||
public AccountManagementPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
NavigationCacheMode = NavigationCacheMode.Enabled;
|
||||
}
|
||||
}
|
||||
}
|
||||
169
Wino.Mail/Views/Account/MergedAccountDetailsPage.xaml
Normal file
169
Wino.Mail/Views/Account/MergedAccountDetailsPage.xaml
Normal file
File diff suppressed because one or more lines are too long
13
Wino.Mail/Views/Account/MergedAccountDetailsPage.xaml.cs
Normal file
13
Wino.Mail/Views/Account/MergedAccountDetailsPage.xaml.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Wino.Views.Abstract;
|
||||
|
||||
|
||||
namespace Wino.Views.Account
|
||||
{
|
||||
public sealed partial class MergedAccountDetailsPage : MergedAccountDetailsPageAbstract
|
||||
{
|
||||
public MergedAccountDetailsPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user