mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-31 10:29:52 +08:00
15 lines
414 B
C#
15 lines
414 B
C#
using MicaSetup.Helper;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
public sealed class ShellSearchConnector : ShellSearchCollection
|
|
{
|
|
internal ShellSearchConnector() => OsVersionHelper.ThrowIfNotWin7();
|
|
|
|
internal ShellSearchConnector(IShellItem2 shellItem)
|
|
: this() => nativeShellItem = shellItem;
|
|
|
|
public new static bool IsPlatformSupported =>
|
|
OsVersionHelper.IsWindows7_OrGreater;
|
|
}
|