File: System\Windows\Controls\CalendarKeyboardHelper.cs | Web Access |
Project: src\src\Microsoft.DotNet.Wpf\src\PresentationFramework\PresentationFramework.csproj (PresentationFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Windows.Input; namespace System.Windows.Controls { internal static class CalendarKeyboardHelper { public static void GetMetaKeyState(out bool ctrl, out bool shift) { ctrl = (Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control; shift = (Keyboard.Modifiers & ModifierKeys.Shift) == ModifierKeys.Shift; } } } |