2016-04-25 72 views
0

enter image description hereWPF - Telerik的問題?在Windows 7環境中工作正常,但不是Windows 8.1

嗨,夥計們。我知道這些信息是簡短的,但是這裏有任何好的靈魂,能夠向我指出這個錯誤信息究竟意味着什麼?

代碼在Windows 7平臺上運行得很好。但是,當我使用Windows 8.1運行它時,它會崩潰。

我幾乎可以肯定,這個問題與telerik有關。這是因爲當我刪除相關的RadGridView從我的xaml,它工作正常。這RadGridView結合ICollection的的ItemSource

當下非常絕望。提前感謝您的幫助傢伙!欣賞它:)

回答

1

問題是由觸摸屏/輔助功能支持在Windows 8.x中引起

您可能能夠通過禁用Telerik的UI自動化這樣來解決這個問題:

using Telerik.Windows.Automation.Peers; 

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

@ DriLLFreAK100如果這不起作用,請嘗試[this](http://stackoverflow.com/a/36252796/5152001)也 –

+0

會試一試,然後來找你:D – DriLLFreAK100

+0

非常感謝你的幫助 – DriLLFreAK100

相關問題