WPF - Telerik问题?在Windows 7环境中工作正常但不在Windows 8.1中工作

时间:2016-04-25 15:48:35

标签: wpf xaml telerik

enter image description here

你好,伙计们。我知道这些信息有点简短但可以在这里有任何好的灵魂,能够向我指出这个错误信息究竟意味着什么?

代码在Windows 7平台上运行得很好。但是,当我使用Windows 8.1运行它时它会崩溃。

我几乎可以肯定这个问题与 telerik 有关。这是因为当我从 xaml 中删除相关的 RadGridView 时,它可以正常工作。 RadGridView 绑定 ICollection 作为 ItemSource

此刻非常绝望。提前感谢您的帮助!欣赏它:)

1 个答案:

答案 0 :(得分:1)

问题是由Windows 8.x中的触摸屏/辅助功能支持引起的。

您可以通过在Telerik中禁用UI自动化来解决此问题,如下所示:

using Telerik.Windows.Automation.Peers; 

public partial class App : Application
{
    public App()
    {
        AutomationManager.AutomationMode = AutomationMode.Disabled;
        this.InitializeComponent();
    }
}