Removed migrations. New onboarding screen and wizard like steps.

This commit is contained in:
Burak Kaan Köse
2026-03-06 03:42:08 +01:00
parent db5ecd60e4
commit aaa6e8a2c9
56 changed files with 1843 additions and 554 deletions
@@ -0,0 +1,17 @@
using Microsoft.UI.Xaml.Controls;
using Wino.Mail.WinUI.Views.Abstract;
namespace Wino.Views;
public sealed partial class ProviderSelectionPage : ProviderSelectionPageAbstract
{
public ProviderSelectionPage()
{
InitializeComponent();
}
private void ProviderSelectionChanged(ItemsView sender, ItemsViewSelectionChangedEventArgs args)
{
ViewModel.SelectedProvider = sender.SelectedItem as Wino.Core.Domain.Interfaces.IProviderDetail;
}
}