mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-31 10:29:52 +08:00
20 lines
1.0 KiB
C#
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);
|
|
}
|