26 lines
581 B
C#
26 lines
581 B
C#
|
|
using Windows.System;
|
|
using Windows.UI.Core;
|
|
using Wino.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
#if NET8_0
|
|
using Microsoft.UI.Xaml;
|
|
#else
|
|
using Microsoft.UI.Xaml;
|
|
#endif
|
|
|
|
namespace Wino.Shared.WinRT.Services
|
|
{
|
|
public class KeyPressService : IKeyPressService
|
|
{
|
|
public bool IsCtrlKeyPressed()
|
|
=> Window.Current?.CoreWindow?.GetKeyState(VirtualKey.Control).HasFlag(CoreVirtualKeyStates.Down) ?? false;
|
|
|
|
public bool IsShiftKeyPressed()
|
|
=> Window.Current?.CoreWindow?.GetKeyState(VirtualKey.Shift).HasFlag(CoreVirtualKeyStates.Down) ?? false;
|
|
}
|
|
}
|