|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
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;
}
}
}
|