mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
28 lines
721 B
C#
28 lines
721 B
C#
using System.Runtime.Versioning;
|
|
|
|
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
public enum FileIconSize
|
|
{
|
|
/// <summary>
|
|
/// small - 16x16 (per app.getFileIcon size mapping).
|
|
/// </summary>
|
|
small,
|
|
|
|
/// <summary>
|
|
/// normal - 32x32 (per app.getFileIcon size mapping).
|
|
/// </summary>
|
|
normal,
|
|
|
|
/// <summary>
|
|
/// large - 48x48 on Linux, 32x32 on Windows, unsupported on macOS (per app.getFileIcon size mapping).
|
|
/// </summary>
|
|
[SupportedOSPlatform("Linux")]
|
|
[SupportedOSPlatform("Windows")]
|
|
large
|
|
}
|
|
} |