Files
better-genshin-impact/Build/MicaSetup/Natives/Shell/Dialogs/Common/DefaultShellImageSizes.cs

20 lines
1.0 KiB
C#

namespace MicaSetup.Shell.Dialogs;
public static class DefaultIconSize
{
public static readonly System.Windows.Size ExtraLarge = new System.Windows.Size(256, 256);
public static readonly System.Windows.Size Large = new System.Windows.Size(48, 48);
public static readonly System.Windows.Size Maximum = new System.Windows.Size(256, 256);
public static readonly System.Windows.Size Medium = new System.Windows.Size(32, 32);
public static readonly System.Windows.Size Small = new System.Windows.Size(16, 16);
}
public static class DefaultThumbnailSize
{
public static readonly System.Windows.Size ExtraLarge = new System.Windows.Size(1024, 1024);
public static readonly System.Windows.Size Large = new System.Windows.Size(256, 256);
public static readonly System.Windows.Size Maximum = new System.Windows.Size(1024, 1024);
public static readonly System.Windows.Size Medium = new System.Windows.Size(96, 96);
public static readonly System.Windows.Size Small = new System.Windows.Size(32, 32);
}