mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-21 22:19:52 +01:00
14 lines
374 B
C#
14 lines
374 B
C#
|
|
// This class sets the visibility property of Advanced settings based on the OS Version
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
|
|||
|
|
namespace ImageResizer.Models
|
|||
|
|
{
|
|||
|
|
public class AdvancedSettings
|
|||
|
|
{
|
|||
|
|
[DllImport("../os-detection.dll", EntryPoint = "UseNewSettings", ExactSpelling = false)]
|
|||
|
|
public static extern bool UseNewSettings();
|
|||
|
|
}
|
|||
|
|
}
|