mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
20 lines
496 B
C#
20 lines
496 B
C#
using Microsoft.UI.Windowing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterLyrics.WinUI3.Helper
|
|
{
|
|
public static class AppWindowHelper
|
|
{
|
|
public static void SetIcons(this AppWindow appWindow)
|
|
{
|
|
appWindow.SetIcon(PathHelper.LogoPath);
|
|
appWindow.SetTaskbarIcon(PathHelper.LogoPath);
|
|
appWindow.SetTitleBarIcon(PathHelper.LogoPath);
|
|
}
|
|
}
|
|
}
|