gpt4 book ai didi

wpf - 为什么我的所有 WPF 应用程序自 Windows 10 (1809/1903) 以来都无法拖动到它们的窗口之外,例如调整窗口大小或进行拖放?

转载 作者:行者123 更新时间:2023-12-04 14:04:25 26 4
gpt4 key购买 nike

有一天我发现我所有的 WPF 应用程序都无法拖动到窗口之外,而且我无法通过实时预览调整任何窗口的大小。

我的问题是为什么会发生这种情况,我该如何解决?

您可以查看下面显示的动画图像:

Cannot resize outside the window

Visual Studio resizing demo

您可以注意到,当我的光标在窗口外时,调整大小立即停止,并且当光标第一次离开窗口时窗口保持大小。如果光标重新进入窗口区域并且窗口大小调整恢复。

不仅是我写的所有 WPF 应用程序,还有其他 WPF 应用程序复制:

  • Visual Studio 2017/2019
  • 窥探
  • ScreenToGif

  • 非 WPF 应用程序行为正确。

    这种现象发生在几个月前,因为我的系统版本是 Windows 10(1809),现在我的系统版本是 Windows 10(1903),这个问题仍然存在。从 .NET Framework 3.5/4.5/4.8 和 .NET Core 3.0 嵌入的 WPF 应用程序。

    更新 1 :我刚刚清理了所有驱动器并重新安装了带有一些核心应用程序的 Windows 10 Professional(1903,客户版本),问题仍然存在。核心应用程序是Chrome、PalmInput IME、iTunes。

    更新 2 :我写了一个 WPF 应用程序来处理窗口消息。我发现 49757当我在窗口之外调整窗口大小时,消息将停止接收。该消息在我 friend 的系统上正常运行。

    最佳答案

    更新:

    As pointed out WPF 团队成员推荐的在 WPF 中禁用触控笔和触摸支持的方法是使用 Switch.System.Windows.Input.Stylus.DisableStylusAndTouchSupport设置在 App.config像这样:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <runtime>
    <AppContextSwitchOverrides value="Switch.System.Windows.Input.Stylus.DisableStylusAndTouchSupport=true" />
    </runtime>
    </configuration>

    另请注意,这不是一种解决方案,而是一种变通方法,可能并不适合所有场景。

    原文:

    Markus Eisenstöck找到了一个 work around对于这个问题。通过在 WPF 中禁用平板电脑支持,您将体验到预期的行为。我已经测试过,它可以在我的机器上运行(Windows 10 版本 1903 和 .NET Framework 4.6.2):
    public static void DisableWpfTabletSupport()
    {
    // Get a collection of the tablet devices for this window.
    TabletDeviceCollection devices = System.Windows.Input.Tablet.TabletDevices;


    if (devices.Count > 0)
    {
    // Get the Type of InputManager.
    Type inputManagerType = typeof(System.Windows.Input.InputManager);


    // Call the StylusLogic method on the InputManager.Current instance.
    object stylusLogic = inputManagerType.InvokeMember("StylusLogic",
    BindingFlags.GetProperty | BindingFlags.Instance |
    BindingFlags.NonPublic,
    null, InputManager.Current, null);


    if (stylusLogic != null)
    {
    // Get the type of the stylusLogic returned
    // from the call to StylusLogic.
    Type stylusLogicType = stylusLogic.GetType();


    // Loop until there are no more devices to remove.
    while (devices.Count > 0)
    {
    // Remove the first tablet device in the devices collection.
    stylusLogicType.InvokeMember("OnTabletRemoved",
    BindingFlags.InvokeMethod |
    BindingFlags.Instance | BindingFlags.NonPublic,
    null, stylusLogic, new object[] { (uint)0 });
    }
    }
    }
    }

    关于wpf - 为什么我的所有 WPF 应用程序自 Windows 10 (1809/1903) 以来都无法拖动到它们的窗口之外,例如调整窗口大小或进行拖放?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56354510/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com