Removing UWP project.

This commit is contained in:
Burak Kaan Köse
2024-07-20 03:07:21 +02:00
parent 5b68f237f0
commit e04c17d591
294 changed files with 26742 additions and 163 deletions

View File

@@ -0,0 +1,26 @@
using Wino.Mail.ViewModels.Data;
#if NET8_0
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
#else
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
#endif
namespace Wino.Selectors
{
public class MailItemContainerStyleSelector : StyleSelector
{
public Style Thread { get; set; }
protected override Style SelectStyleCore(object item, DependencyObject container)
{
if (item is ThreadMailItemViewModel)
return Thread;
else
return base.SelectStyleCore(item, container);
}
}
}