Shared core and views part 1

This commit is contained in:
Burak Kaan Köse
2024-07-12 02:29:17 +02:00
parent bdfff1536d
commit c45d0022d6
87 changed files with 999 additions and 243 deletions

View File

@@ -1,5 +1,13 @@
using Windows.UI.Xaml;
#if NET8_0
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media;
#else
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Media;
#endif
namespace Wino.Controls
{
@@ -76,7 +84,7 @@ namespace Wino.Controls
public WinoFontIcon()
{
FontFamily = new Windows.UI.Xaml.Media.FontFamily("ms-appx:///Assets/WinoIcons.ttf#WinoIcons");
FontFamily = new FontFamily("ms-appx:///Assets/WinoIcons.ttf#WinoIcons");
FontSize = 32;
}